-
Notifications
You must be signed in to change notification settings - Fork 0
[GET] 사용자 정보 조회
MoonAyoung edited this page Jun 6, 2021
·
4 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /api/v2/users | 사용자 정보 조회 |
{
"accessToken": "[토큰]"
}
- 자체 로그인 예시
{
"status": 200,
"message": "프로필 가져오기 성공.",
"data": {
"id": 1,
"email": "[email protected]",
"nickname": "에이용",
"createdDate": "2021-04-20 14:57:34",
"intro": "프로필 자기소개",
"profileUrl": "testurl.png",
"socialType": null,
"socialId": null
}
}
- 소셜 로그인 예시
{
"status": 200,
"message": "프로필 가져오기 성공.",
"data": {
"id": 19,
"email": "[email protected]",
"nickname": "테스",
"createdDate": "2021-05-07 12:38:14",
"intro": "테스 ",
"profileUrl": "21415",
"socialType": "GOOGLE",
"socialId": "115424264480722165199"
}
}
- 잘못된 토큰
{
"message": "JWT가 없거나 잘못된 값 입니다",
"status": 401,
"errors": [],
"code": "J001"
}
- 서버 에러
{
"message": "Server Error",
"status": 500,
"errors": [],
"code": "C004"
}