Kakao

POST https://kauth.kakao.com/oauth/token/

Request Body

Name
Type
Description

grant_type*

String

authorization_code

client_id*

String

client_id

redirect_uri*

String

route

code*

String

code

{
    // Response
    ACCESS_TOKEN: res.data.access_token
}

POST /oauth/kakao

Request Body

Name
Type
Description

access_Token

String

token

{
    // Response
    userInfo : {
        id: 1,
        email: kbs2415@naver.com,
        nickname: 김경훈
    }
}

GET https://kapi.kakao.com/v2/user/me/

Headers

Name
Type
Description

Authorization*

String

Beare token

content-type*

String

application/x-www-form-urlencoded;charset=utf-8

{
    // Response
    data: data.data,
    message: "Kakao Ok
}

Last updated