Request Format Description
Request Mode
POST(HTTPS)
Resource URL
https://Domain_name_of_the_authentication_interface/sso/oauth2/refreshToken
Request Header
Content-Type: application/json
Request Parameter
Parameter |
Name |
Type |
Description |
|---|---|---|---|
client_id |
Application ID |
String |
Registration ID of the client application (The input parameter is stored in the server configuration file during the DevKit installation.). |
refresh_token |
Refresh token |
String |
It updates the authorization code of access_token. |
Request Example
curl -X POST
https://Domain_name_of_the_authentication_interface/auth/sso/oauth2/refreshToken
-H 'Content-Type: application/json'
-d '{
"client_id": "20221017000000001",
"refresh_token": "*******************************"
}'
Parent topic: Refreshing access_token