계정 로그인/가입
유저가 게임 접속시 Game Server에서는 해당 api를 이용하여 기본 정보를 응답 받아야 합니다.
POST https://{auth-domain}/v1.0/auth/app/account/login
Headers
Authorization*
string
Bearer {{app-access-token}}
Context-Type*
string
application/json
Request Body
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..."
}curl --location --request POST 'https://{auth-domain}/v1.0/auth/app/account/login' \
--header 'Authorization: Bearer eyJhbGciOiJI...' \
--header 'Content-Type: application/json' \
--data-raw '{
"inno_uid" : "xOaLTTVuo8VX078KQPm5RJQLW..."
}'member_info
object
계정 정보
au_id
int64
계정 au_id
mu_id
int64
계정 mu_id
database_id
int64
포인트 정보 db id
is_joined
bool
신규 가입 여부
points
object array
계정이 사용하고 있는 포인트 정보
point_id
int64
포인트 id
quantity
int64
보유 포인트 수량
0
success
성공
22001
Empty Account SocialID
social_id 정보가 비어있음
22002
Empty Account SocialType
social_type 정보가 비어있음
22003
Error Procedure Auth Members
auth 맴버 처리 오류
22004
Error API Post Point Member Register
point 맴버 등록 오류
22005
Error API Get Token Address New
지갑 생성 오류
22006
Error Procedure Add Accounts Coins
계정 지갑 처리 오류
22007
Error API Get Point App
포인트 정보 획득 오류
22009
Invalid InnoUID
Inno UID가 유효하지 않음
22014
Blocked InnoUID
제재된 Inno UID
Last updated