Hub/docs/serverAPI/user me
user/me
Description
- 로그인한 사용자의 정보를 얻는다.
Parameters
- N/A
출력 JSON
- uid : 허브 UID (string)
- id : 로그인 ID (string, 최대 12자)
- name : 사용자가 입력한 이름 또는 facebook name (string, 설정 안되었으면 null, 최대 128자)
- fbid : 페이스북 계정이 연결된 경우 페이스북 ID (string, 없으면 null)
- email : 로그인 메일 주소 (string, 없으면 null)
- picture : 프로필 이미지 URL (string)
- country : 국가 코드 (string)
- birthday : 생년월일(string, 설정 안되었으면 null)
- gender : 성별 (string, 남자 M/여자 F, 설정 안되었으면 null)
- comment : 사용자가 입력한 한 마디 (string, 설정 안되었으면 null)
- is_test_account : 테스트 계정 여부 (1일 경우 테스트 계정, 0인 경우 일반 계정)
{
"type":"user/me",
"error_code": 0,
"uid":"27881360",
"id":"haarp02",
"name":"My name",
"fbid":"12334663"
"email":"haarp02@1.com",
"picture":"http://image.com2us.com/....jpg",
"country":"KR",
"birthday":null,
"gender":"M",
"comment":null,
"is_test_account":0
}
"type":"user/me",
"error_code": 0,
"uid":"27881360",
"id":"haarp02",
"name":"My name",
"fbid":"12334663"
"email":"haarp02@1.com",
"picture":"http://image.com2us.com/....jpg",
"country":"KR",
"birthday":null,
"gender":"M",
"comment":null,
"is_test_account":0
}
에러 메시지
- 사용자 정보 조회 실패
{
"type": "user/me",
"error_code": 1101,
"error_msg": "Database error occured."
}
"type": "user/me",
"error_code": 1101,
"error_msg": "Database error occured."
}
Related Method