Hub/docs/serverAPI/user hub uid
user/{hub_uid}
Description
- 특정 사용자의 프로필을 조회한다.
- ex) /user/123456과 같은 식으로 URL 설정
Parameters
- N/A(로그인한 쿠키로 사용자 인증)
- 단, 게스트 사용자일때는 다음과 같은 파라미터를 전송
- guest_uid 와 Hub deviceId(did)
{
"guest_uid":"90000000123",
"did":"1234567"
}
"guest_uid":"90000000123",
"did":"1234567"
}
출력 JSON
- uid : 허브 UID (string)
- id : 로그인 ID (string)
- name : 사용자가 입력한 이름 또는 facebook name (string, 설정 안되었으면 null)
- picture : 프로필 이미지 URL (string)
- country : 국가 코드 (string)
- birthday : 생년월일(string, 설정 안되었으면 null)
- comment : 사용자가 입력한 한 마디 (string, 설정 안되었으면 null)
- is_test_account : 테스트 계정 여부 (1일 경우 테스트 계정, 0인 경우 일반 계정)
{
"type":"user/1234567",
"error_code":0,
"uid":"1234567",
"id":"dbjeas",
"name":"Max",
"picture":"http://image.com2us.com/hubweb/avatar_img/public/default_s.png",
"country":"US",
"comment":null,
"is_test_account":0
}
"type":"user/1234567",
"error_code":0,
"uid":"1234567",
"id":"dbjeas",
"name":"Max",
"picture":"http://image.com2us.com/hubweb/avatar_img/public/default_s.png",
"country":"US",
"comment":null,
"is_test_account":0
}
에러 메시지
- 회원 조회 실패시
{
"type":"user/1234567",
"error_code": 1101,
"error_msg":"Database error occured."
}
"type":"user/1234567",
"error_code": 1101,
"error_msg":"Database error occured."
}
Related Method