oauth login 회원정보

GET /api/login/oauth?access_token=Bearer%xxx&refresh_token=xxx

oauth2 로그인 유저의 회원정보 응답

oauth 로그인 유저 : "verified": true

Request Param

{
    "access_token" : Bearer xxx,
    "refresh_token" : xxx
}

Response Header

{
    "Authorization" : Bearer xxx,
    "Refresh-Token" : xxx
}

Response Body


{
    "memberId": 1,
    "email": "email@daum.net",
    "name": "이름",
    "nickname": "d8bef26",
    "phone": null,
    "oauth": true,
    "introduction": null,
    "link": null,
    "profileImageUrl": "http://k.kakaocdn.net/xxx/img_640x640.jpg",
    "followerCount": 0,
    "followingCount": 0,
    "followed": false,
    "myPage": false,
    "verified": true,
    "createdAt": "2023-05-21T16:51:30.738511",
    "modifiedAt": "2023-05-21T16:51:30.738511"
}

Last updated