안녕하세요. 카카오 로그인을 테스트앱을 통해 우선 구현하려고 하는데 로컬에서는 문제 없었다가 ssl 환경으로 옮기니 토큰 발행 단계에서 invalid token response가 발생합니다. 해당 사항 확인 한 번 부탁드립니다.
사용언어 : Java
백엔드 URL : https://devbackend.artvu.co.kr
테스트 app id : 1039073
에러 메시지 : [invalid_token_response] An error occurred while attempting to retrieve the OAuth 2.0 Access Token Response: I/O error on POST request for “https://kauth.kakao.com/oauth/token”: kauth.kakao.com
안녕하세요.
application.yml 설정 내용 부탁드립니다.
yml 에서 해당되는 부분입니다.
security:
oauth2:
client:
registration:
kakao:
client-id: '8611*****'
client-secret: 'HS*****'
redirect-uri: https://dev.artvu.co.kr/login/oauth2/code/kakao
authorization-grant-type: authorization_code
client-authentication-method: client_secret_post
scope: account_email, profile_image, profile_nickname, gender
client-name: kakao
provider:
kakao:
authorizationUri: https://kauth.kakao.com/oauth/authorize
tokenUri: https://kauth.kakao.com/oauth/token
userInfoUri: https://kapi.kakao.com/v2/user/me
userNameAttribute: id
요청 URL은 https://devbackend.artvu.co.kr/oauth2/authorization/kakao?redirect_uri=https://dev.artvu.co.kr/auth 입니다.
감사합니다!
토큰 발급 요청 이력이 확인되지 않는데요
kuath.kakao.com으로 요청이 전달되지 않는 것으로 보입니다.
백앤드에서 kauth.kakao.com 으로 ping 전달되는지 확인 부탁드립니다.
ping 전달 확인하고 지금은 정상 확인 됩니다.
도움 주셔서 감사합니다.