User A authenticates with my app and grants “basic profile” and “email” scopes.
User B authenticates with my app ang grants “basic profile”, “email”, and “contacts” scopes.
User C authenticates with my app ang grants “basic profile”, “email”, “contacts”, and “Calendar” scopes.
Can Auth0 provide the ability for me to present different scopes to different users?
How does this impact how i configure the permissions when i’m creating the connection via the Auth0 dashboard?
Yes, this can be accomplished a couple ways - The 2 most obvious being utilizing something like loginWithRedirect (React for example) or Actions API objectapi.accessToken.addScope(scope) object.
Can you elaborate on this specifically? Permissions are added to an API registered in Auth0 as opposed to connections.