curl --request POST \
--url https://api.feedspace.io/v3/oauth/token \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'username=<string>' \
--data 'password=<string>' \
--data 'grant_type=<string>' \
--data 'client_id=<string>' \
--data 'client_secret=<string>' \
--data 'refresh_token=<string>'
{
"token_type": "Bearer",
"expires_in": 31536000,
"access_token": "<access_token>",
"refresh_token": "<refresh_token>"
}
Authenticate and obtain an access or refresh token.
curl --request POST \
--url https://api.feedspace.io/v3/oauth/token \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'username=<string>' \
--data 'password=<string>' \
--data 'grant_type=<string>' \
--data 'client_id=<string>' \
--data 'client_secret=<string>' \
--data 'refresh_token=<string>'
{
"token_type": "Bearer",
"expires_in": 31536000,
"access_token": "<access_token>",
"refresh_token": "<refresh_token>"
}
Login or refresh parameters.
The body is of type object
.
Successful authentication response.
The response is of type object
.