Access Token

Issue token that can request api through key, secret issued from manager

Get Token

POST https://uprism.io:30443/oauth/token

API for issuing tokens according to the OAuth2 authentication method. Tokens are issued using the Client Credentails method.

Headers

NameTypeDescription

Authorization

string

"Basic " + base64(clientKey:clientSecret)

Request Body

NameTypeDescription

grant_type

string

client_credentials

{
    "access_token": "1a2b3c4d-5e6f-7g8h-9i0j-1k2l3m4n5o6p",
    "token_type": "bearer",
    "expires_in": 3599,
    "scope": "read write"
}

Last updated