[ ] Regression (a behavior that stopped working in a new release)
[x] Bug report
[ ] Performance issue
[ ] Documentation issue or request
Current behavior
When sending a request to ‘identity-server/connect/token’, the response once included a parameter called ‘scope’ and now ‘scope’ is missing from the response.
Our code assumes this parameter exists and now because of that all of our content is down.
We send scope in the request (equals to “squidex-api”) and I guess we receive the same value in the response. It is our bug that we assumed scope will be in the response because we don’t do anything with it?
scope OPTIONAL, if identical to the scope requested by the client; otherwise, REQUIRED. The scope of the access token as described by [Section 3.3](https://datatracker.ietf.org/doc/html/rfc6749#section-3.3).
I have replaced the authentication part with another library and this other library seems to follow the spec.