계정 로그인/가입
유저가 게임 접속시 Game Server에서는 해당 api를 이용하여 기본 정보를 응답 받아야 합니다.
POST
https://{auth-domain}/v1.0/auth/app/account/login
Headers
Name
Type
Description
Authorization*
string
Bearer {{app-access-token}}
Context-Type*
string
application/json
Request Body
Name
Type
Description
inno_uid*
string
inno 플랫폼 유저 id (최대 64byte)
{
"return": 0,
"message": "success",
"value": {
"member_info": {
"au_id": 33057,
"mu_id": 3047,
"database_id": 1,
"is_joined": false
},
"points": [
{
"point_id": 3,
"quantity": 0
}
]
}
}
{
"inno_uid" : "xOaLTTVuo8VX078KQPm5RJQLW..."
}
Last updated