I’m using wso2is-6.1.0 and when I invoke the token endpoint with the password grant type without a scope, the default scope is not returned in the response.
{
"access_token": "<access_token>",
"refresh_token": "<refresh_token>",
"token_type": "Bearer",
"expires_in": 3542
}
However, it is observed that in the previous versions (5.11.0), the token response returns the scope as default.
{
"access_token": "<access_token>",
"refresh_token": "<refresh_token>",
"scope": "default",
"token_type": "Bearer",
"expires_in": 3542
}
Is the default scope deprecated in the token response wso2is-6.1.0? Any guide on how to enable it properly?
Thanks in advance.