Hi,
I’m currently trying to create a simple app in unity that gets a users details and the organizations they’ve been assigned to,
I’ve got the request setup to use the scope “openid profile read:organizations” however, my request only returns “openid profile”.
other combinations like “openid profile organizations:read” return the same.
What would I need to change to allow me to get access to organizations in this way?
thanks for your help.
Hi, @lihua.zhang Thanks for the quick response,
I’ve given this a try and I’m now returning the scopes openid profile email, but still doesn’t have read organizations .
is there any additional app configuration I may need to do in order to get the correct response?
thanks again,
I’m having the exact same issue: I’m using Authorization Code flow to retrieve an Authentication token from an Application that’s linked to the Management API, and I can’t get the scopes either:
These are the permissions allowed in the machine-to-machine app:
The scope I want to retrieve is the read:organization_members one and its stored in the {{SCOPE}} variable and passed to the /authorize endpoint like you show in the picture:
Am I missing something when I try to use Authentication Code flow with the Management API, or is this a restriction of the Management API (this document explains how to get the auth token for the Management API with the Client Credentials flow only?
I have found that setting the responseType to both “token id_token” causes Auth0 to not return scopes in the auth token. But if I change response type to “token”, then the scopes are included in the auth token. This is pretty frustrating.