Skip to content

Latest commit

 

History

History
65 lines (39 loc) · 1.17 KB

[사용자] 유저 조회.md

File metadata and controls

65 lines (39 loc) · 1.17 KB

유저 조회

유저를 조회합니다.
자기 자신을 조회 할 경우: 하트 액수를 포함한 자신만 볼 수 있는 정보가 포함됩니다.
남을 조회할 경우(혹은 비로그인): 공개된 정보만 포함됩니다.
  • URL

    /user/int:user_id

  • Method:

    | GET |

  • URL Params

    Required:

    N/A

    Optional:

    N/A

  • Data Params

    N/A

  • Success Response:

    • Code: 200
      Content:
          {
              "okay": true,
              "user": {
                  "id": 1,
                  "google_id": 1,
                  "name": "recordable542",
                  "google_picture": "https://lh4.googleusercontent.com/-ufC0a8TTdN4/AAAAAAAAAAI/AAAAAAAABjA/C6tCvQDtOe8/photo.jpg",
                  "followers": 0,
                  "hearts": 0,
                  "me": true
              }
          }
      자기 자신을 조회한 경우에는 me: true 가 붙으며, hearts 액수도 json 에 포함됩니다.
  • Error Response:

    • Code: 404 NOT_FOUND
      Content: { "okay": false, "msg" : "No User Found id #{}" }
  • Sample Call:

  • Notes: