Web Token 검증

GET https://{auth-domain}/v1.0/auth/token/verify

Headers

Name
Type
Description

Authorization*

String

Bearer {{web-access-token}}

{
    "return": 0,
    "message": "success",
    "value": {
        "login_type": 4,
        "uuid": "969fb180-5226-4f77-802f-2a9d915964bd",
        "inno_uid": "JkoYuFvEhHHzuTapl4yo7s5HLwCO/9eNI+8sobpblFMdu/+5oTNsbJou0riGTgEC",
        "au_id": 5521,
        "social_type": 1,
        "zklogin": {
            "id_token": "eyJhbGciOiJSUzI1NiIsImtpZCI6.......JTEhZMLsg",
            "ephemeral_publickey": "AOlMG1EuX/rYa7MPDC+YP2/USB5olfMZbd08whb8QEQW",
            "salt": "74618950994268702983342581215713993381",
            "epoch": 313,
            "randomness": "67617438664689110855700478339690217321",
            "private_key": "0x3232323232",
        }
    }
}
key
data type
desc.

login_type

int

로그인 type (WebLogin = 4)

uuid

string

access token uuid

inno_uid

string

inno uid

au_id

int64

au id

zklogin

object

id_token

string

소셜 id 토큰

salt

string

Zklogin에 사용될 salt 정보

ephemeral_publickey

string

Zklogin 에 사용될 정보

epoch

int64

Zklogin 에 사용될 정보

randomness

string

Zklogin 에 사용될 정보

private_key

string

Zklogin 에 사용될 정보

Last updated