Web 계정 앱 로그인/가입
앱에서 INNO 계정에 연동하기 위한 로그인 (inno_uid 를 연동하기 위한 목적)
POST https://{auth-domain}/v1.0/auth/web/account/login/once
Headers
Name
Type
Description
Context-Type*
string
application/json
Request Body
Name
Type
Description
social_key*
string
소셜 로그인 시 획득한 액세스 토큰
social_type*
int
Google : 1 Facebook : 2
ip
string
접속 ip
{
"return": 0,
"message": "success",
"value": {
"inno_uid": "JkoYuFvEhHHzuTap...",
"is_joined": false,
"au_id": 5033,
"social_type": 1,
"is_migrated": true
}
}{
"social_key" : "ya29.a0ARrdaM-BzAz7s2Z...",
"social_type" : 1,
"ip" : "14.52.155.93"
}curl --location --request POST 'https://{auth-domain}/auth/web/account/login/once' \
--header 'Content-Type: application/json' \
--data-raw '{
"social_key" : "ya29.a0Aa4xrXMK9A23BEnY9aWu6kdK...",
"social_type" : 1,
"ip" : "14.52.155.93"
}'key
data type
desc.
inno_uid
string
inno 플랫폼 유저 id
is_joined
bool
신규 회원 여부
au_id
int
계정 UID
social_type
int
소셜 타입(Google:1 Facebook:2)
is_migrated
bool
마이그레이션 여부
return
message
desc.
0
success
성공
13000
DB Error
내부 DB 에
13002
Redis Error
내부 redis 에러
22005
Error API Get Token Address New
token-manager 지갑 생성 오류
22006
Error Procedure Add Accounts Coins
내부 DB 프로시저 오류
22008
Error Verify Social Key
유효하지 못한 Social key
23001
Make Token Error
액세스 토큰 생성 에러
Last updated