-
Notifications
You must be signed in to change notification settings - Fork 4
3.5.3. 프로필 수정
sunkyungBAEK edited this page Jul 11, 2019
·
5 revisions
메소드 | 경로 | 기능 설명 |
---|---|---|
PUT | BASEURL/user/setprofile | 프로필 사진, 닉네임 수정 |
Content-Type: multipart/form-data
accesstoken: 발급된 accesstoken
profile_img: image url
nickname: 닉네임
status: 200
body : {
status: 200 (OK),
success: true,
message: "변경이 완료되었습니다."
}
status: 200
body : {
status: 400 (BAD_REQUEST),
success: false,
message: "잘못된 형식의 닉네임입니다"
}
status: 200
body : {
status: 500 (INTERNAL_SERVER_ERROR),
success: false,
message: "서버 에러ㅜㅜ"
}