Hub/docs/serverAPI/user modify info

 

user/modify_info

Description

  • 사용자 정보 수정
    • 현재는 comment 수정만을 지원함
    • 확장 가능한 API 구조. 수정할 수 있는 필드가 늘어나면 JSON에 해당 필드를 추가해주면 됨. 여러 개로 늘어났을 경우 수정이 필요한 필드만 전달해주면 해당 내용만 수정하는 구조
    • 변경 데이터는 하나씩 가능 합니다. 두개를 동시에 변경 불가합니다.


Parameters

  • comment: 변경할 유저 코멘트
{
    "comment": "hello world"
}
  • realname : 변경할 유저 이름
{
    "realname":"hello"
}


출력 JSON

  • realname : 변경할 유저 이름
{
    "type": "user/modify_info",
    "error_code": 0,
    "comment": "hello"
}
  • comment: 변경된 유저 코멘트
{
    "type": "user/modify_info",
    "error_code": 0,
    "comment": "hello world"
}


에러 메시지

  • 디바이스 등록 실패 / 게스트 식별자 발급 실패
{
    "type": "user/modify_info",
    "error_code": 1101,
    "error_msg": "Database error occured."
}
  • 차단된 디바이스
{
    "type": "user/modify_info",
    "error_code": 1300,
    "error_msg": "Authorization Failed."
}
  • 잘못된 형식의 json
{
    "type": "user/modify_info",
    "error_code": 1201,
    "error_msg": "Request has invalid format."
}
  • 금칙어 규칙 에러
{
    "type": "user/modify_info",
    "error_code": 1502,
    "error_msg": "Restricted words contained."
}

Related Method