HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
// playerIds 조회 > 응답 결과 playerId key
{
"players": [
{
"156176766994432": {
"kgAppId": "909428",
"playerId": "156176766994432",
"status": "normal",
"nickname": "kakaogames-1672048155324",
"lang": "ko",
"data": {
"country": "kr",
"deviceId": "1234567890qwerasdfzxcv"
}
}
},
{
"156176766994123": {
"kgAppId": "909428",
"playerId": "156176766994123",
"status": "normal",
"nickname": "kakaogames-1672048155324",
"lang": "ko",
"data": {
"country": "kr",
"deviceId": "1234567890qwerasdfzxcv"
}
}
}
]
}
// idpIds 조회 > 응답 결과 idpId key
HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
{
"players": [
{
"1234567": {
"kgAppId": "909428",
"playerId": "156176766994432",
"status": "normal",
"nickname": "kakaogames-1672048155324",
"lang": "ko",
"data": {
"country": "kr",
"deviceId": "1234567890qwerasdfzxcv"
}
}
},
{
"2222222": {
"kgAppId": "909428",
"playerId": "156176766994123",
"status": "normal",
"nickname": "kakaogames-1672048155324",
"lang": "ko",
"data": {
"country": "kr",
"deviceId": "1234567890qwerasdfzxcv"
}
}
}
]
}
// 플레이어 정보 없음
HTTP/1.1 406 Not Acceptable
{
"desc": "There is no player. (406.-10005)"
} |