OAuth
3PP obtains a new access token by refresh token.
When the access token expires, 3PP can obtain a new access token by refresh token.
Request
The ID of 3PP offered by OC offline
Fixed value "refresh_token"
The refresh token is from the response of "get accessToken&refreshToken" API
Request samples
curl --location --request POST 'https://openapi-stage-hk.orangeconnex.com/oauth/token?client_id=&grant_type=&refresh_token='
Responses
application/json Value of access token. When 3PP requests APIs (exclude "getServiceList" API), access token should be contained in a header named "Access-Token".
expires_in
integer <int32>
optionalDuration of validity of access token.
Value of refresh token. If the access token is expired, 3PP uses the refresh token to get a new access token and its expiration date.
{
"access_token": "string",
"error": "string",
"error_description": "string",
"expires_in": 0,
"refresh_token": "string",
"token_type": "string"
}
Modified at 2024-05-13 08:43:05