Refresh project access_token
POST
https://auth-dev.jollor.com/oauth2/token
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://auth-dev.jollor.com/oauth2/token?grant_type=refresh_token' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"client_id": "<your client id>",
"client_secret": "<your secret>",
"refresh_token": "<project refresh_token>",
"scope": "profile project"
}'
Response Response Example
{
"access_token": "string",
"token_type": "string",
"scope": [
"string"
],
"expire_in": 0,
"refresh_token": "string"
}
Request
Query Params
grant_type
string
required
Example:
refresh_token
Body Params application/json
Responses
Modified at 2024-03-11 13:18:58