아이디 : 1107651
redirect uri : https://cozymate.store/oauth2/kakao/code
개발 환경
백엔드 : java/springboot
로그를 찍어보니 사용자 정보 받아와서 서비스 자체 토큰 발급되는거 까지는 잘됩니다.
문제는 로그인을 한 브라우저로 response가 안가고 502 bad gateway가 뜹니다.
nginx 프록시 설정은 443 → 80 을 해뒀습니다.
CORS는 다음과 같이 열어뒀습니다.
CorsConfiguration configuration = new CorsConfiguration();
configuration.setAllowedOrigins(
Arrays.asList(“https://cozymate.store:3000”,
“https://cozymate.store:80”,
“https://cozymate.store”,
“http://localhost:3000”,
“http://localhost:8080”
));
configuration.setAllowedMethods(Collections.singletonList(““));
configuration.setAllowCredentials(true);
configuration.setAllowedHeaders(Collections.singletonList(””));
configuration.setMaxAge(3600L);