Get the accessToken by APPKey and AppSecret. All the other APIs used the token for authorization, the access token is valid for 30 minutes.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request samples
curl --location --request POST '/authentication/token' \
--header 'AppKey;' \
--header 'AppSecret;'
Responses
application/json {
"accessToken": "string",
"expiresIn": 0
}
Modified at 2024-02-22 07:21:20