Authentication
All the open APIs use a single authentication scheme: a Bearer JWT passed in the HTTP request header.
To obtain the access to open APIs, users have to do the following:
Use
app_id
andapp_secret
to call login to get the JWT.Add the
Authorization: Bearer {JWT}
in the request header to call the corresponding API. The corresponding example can refer to sample.
The Bearer JWT is valid for one hour to call open APIs. Once the token is expired for one hour, users have to call Refersh JWT to obtain a new JWT. The corresponding example can refer to sample.
To debug various error codes related to authentication, please see Error codes.
Last updated