I was going through the following article on authorization:
https://auth0.com/docs/quickstart/backend/aspnet-core-webapi/02-authorization
It sort of confused me a bit.
Auth0 uses a scope claim for mentioning authorization of endpoint actions.
OAuth 2.0 scope parameter is also used for the same purpose, e.g. Slack mentions it's scopes as in following link:
https://api.slack.com/docs/oauth-scopes
What would be their use cases, when would I prefer using JWT claim scope which is part of OAuth 2.0 access_token(in this case access_token not being opaque) instead of OAuth 2.0 scope parameter