curl --location --request POST 'https://auth-dev.jollor.com/oauth2/token?grant_type=token_exchange' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
"client_id": "<your client id>",
"client_secret": "<your secret>",
"project_id": "<your project_id>",
"access_token": "",
"scope": "profile project"
}'
{
"access_token": "string",
"token_type": "string",
"scope": [
"string"
],
"expire_in": 0,
"refresh_token": "string"
}