-
Notifications
You must be signed in to change notification settings - Fork 1
✔내 프로필 조회
alia edited this page Aug 22, 2020
·
2 revisions
메소드 | 경로 | 설명 |
---|---|---|
GET | /user/profile | 내 프로필 조회 |
{
"Content-Type" : "application/json",
"token" : "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRlc3QzIiwibmFtZSI6Iu2FjOyKpO2KuCIsImlhdCI6MTU3NzczNTQwNSwiZXhwIjoxNTgwMzI3NDA1LCJpc3MiOiJPdW5jZV9TZXJ2ZXIifQ.V4hcw4bxwICn4p7nz15ToUw63ok-QmbIbWx7gvDMouI"
}
rating, count가 모두 0점일 때 (서버에서 null 처리 (0점 처리) 다 해놨습니다!)
{
"status": 200,
"success": true,
"message": "프로필 조회성공입니다",
"data": {
"nickName": "h",
"avgRating": 0
}
}
rating, count > 0 일때
{
"status": 200,
"success": true,
"message": "프로필 조회성공입니다",
"data": {
"nickName": "hy",
"avgRating": 3.0
}
}
- 데이터 누락
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다. "
}