POST
/
oauth
/
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>"
}

Body

application/x-www-form-urlencoded

Login or refresh parameters.

The body is of type object.

Response

200 - application/json

Successful authentication response.

The response is of type object.

POST
/
oauth
/
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>"
}

Body

application/x-www-form-urlencoded

Login or refresh parameters.

The body is of type object.

Response

200 - application/json

Successful authentication response.

The response is of type object.