We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I test multiple time want to ask multiple scope in one request
mbClient.requestAuthorization('auth.user_identity:read and users.profiles:read ', 'http://localhost/moneyButtonSuccess');
follow the docs seems like use and to join the scope but it's not working with error unknown scope
The text was updated successfully, but these errors were encountered:
I looked at the requests from a fabriik website and saw that they use '+' to separate the scopes: ...&scope=${mbConfig.scopes}&state=${randomString}
...&scope=${mbConfig.scopes}&state=${randomString}
mbConfig.scopes like auth.user_identity:read+users.profiles:read.
mbConfig.scopes
auth.user_identity:read+users.profiles:read
I think mbClient.requestAuthorization('auth.user_identity:read+users.profiles:read ', 'http://localhost/moneyButtonSuccess'); should do it.
mbClient.requestAuthorization('auth.user_identity:read+users.profiles:read ', 'http://localhost/moneyButtonSuccess');
Sorry, something went wrong.
No branches or pull requests
I test multiple time want to ask multiple scope in one request
mbClient.requestAuthorization('auth.user_identity:read and users.profiles:read ', 'http://localhost/moneyButtonSuccess');
follow the docs seems like use and to join the scope but it's not working with error unknown scope
The text was updated successfully, but these errors were encountered: