스프링 카카오 JWT 로그인 시 아래와 같이 나오는 상황입니다.
application.yml은 다음과 같습니다.
security:
oauth2:
client:
provider:
kakao:
authorization-uri: https://kauth.kakao.com/oauth/authorize
token-uri: https://kauth.kakao.com/oauth/token
user-info-uri: https://kapi.kakao.com/v2/user/me
user-name-attribute: id
registration:
kakao:
client-id: REST API키
client-name: Kakao
client-authentication-method: client_secret_post
client-secret: Secret키
redirect-uri: http://localhost:8080/login/oauth2/code/kakao # 카카오 테스트 앱 리다이렉트 URI
authorization-grant-type: authorization_code
scope:
- profile_nickname
- account_email
- name
- gender
- birthday
- birthyear
앱 ID는 1150401입니다. 도통 무엇이 문제인지 잘 모르겠습니다. 성공 시 핸들러와 실패 시 핸들러를 추가했을때, 핸드폰으로 오는 인증 톡을 확인하고 눌러도 Invalid_Request라고 뜹니다.