You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 5, 2023. It is now read-only.
redirect로 code를 받고 {REDIRECT_URI}?code={AUTHORIZE_CODE}
client_id, code,redirect,grant_type을 통해 인가 토큰을 받는다. POST /oauth/token HTTP/1.1
토큰을 통해 카카오톡 계정 정보를 가져온다.(카카오톡 email만 받으면 신뢰성이 없으므로 서버에서 kakao access token을 받고, access token을 통해 신뢰성 있는 계정 정보를 가져온다.) GET "https://kapi.kakao.com/v2/user/me"
-H "Authorization: Bearer {ACCESS_TOKEN}"