I’m following this help article:
It says the response should be something like:
{
"access_token": "eyJ...Ggg",
"expires_in": 86400,
"scope": "read:clients create:clients read:client_keys",
"token_type": "Bearer"
}
However, I’m getting: (no value for scope)
{
"access_token": "eyJ...Ggg",
"expires_in": 86400,
"token_type": "Bearer"
}
And when I go to use the token, it doesn’t work. Do I need to specify scope in the request?