Hub/docs/serverAPI/guest auth
guest/auth
Description
- 이미 발급 받은 게스트 식별자가 유효한지 인증하는 API이다.
- 게스트 식별자의 로그인 과정이다.Hub 2.0 PlayFirst System
Parameters
- guest_uid: required 발급 받은 게스트 식별자
{
"guest_uid": "90000000077"
}
"guest_uid": "90000000077"
}
출력 JSON
- did: 디바이스 ID(string)
{
"type": "guest/auth",
"error_code": 0,
"is_auth": true,
"did": "27162811"
}
"type": "guest/auth",
"error_code": 0,
"is_auth": true,
"did": "27162811"
}
에러 메시지
- 게스트 식별자 인증 실패 (서버상의 장애일 경우)
{
"type": "guest/auth",
"error_code": 1101,
"error_msg": "Database error occured."
}
"type": "guest/auth",
"error_code": 1101,
"error_msg": "Database error occured."
}
- 게스트 식별자가 이미 만료된 것이거나, 다른 게임이나 디바이스에 할당된 게스트 식별자인 경우
{
"type": "guest/auth",
"error_code": 0,
"is_auth": false
}
"type": "guest/auth",
"error_code": 0,
"is_auth": false
}
- 차단된 디바이스
{
"type": "guest/auth",
"error_code": 1400,
"error_msg": "This service to device is denied."
}
"type": "guest/auth",
"error_code": 1400,
"error_msg": "This service to device is denied."
}
Related Method