Auth components don't support scopes
See original GitHub issueIs your feature request related to a problem? Please describe.
I’m using the provided react components to build the auth flow (@aws-amplify/ui-react
).
Unfortunately there doesn’t seem to be any possibility to request a scope on authentication.
So it’s currently impossible to use this library for proper authentication.
Similar issues (closed without any reason): aws-amplify/amplify-js#3732 aws-amplify/amplify-js#1370. -> That issue already exists for years now
Describe the solution you’d like Hosted-UI supports this. But that is not an option for us. Would be great to pass the same configuration to the react components.
scope: ["email", "profile", "openid", "weather:read"],
Describe alternatives you’ve considered
Unfortunately I don’t see any alternative solution possible with amplify-js
.
-> I would really like to use this lib as it saves a ton of work. Thanks for that! Hope you can provide that feature (fix that bug 😉) soon 👍
Issue Analytics
- State:
- Created 3 years ago
- Reactions:57
- Comments:10
I ran into this very issue today. I’m using Vue.js but it’s the same problem. The custom UI used by Amplify’s UI components implements the
USER_SRP_AUTH
flow. This flow is completely separate from the OAuth 2.0 flows. As a result, the access token I get back looks like this:Notice the scope above.
When I try to invoke my HTTP API (not using REST) with a Cognito authorizer, passing the access token, I get the error:
Bearer scope="email" error="insufficient_scope" error_description="expected scopes within the token"
.Is the solution to use the Cognito hosted UI where we can get OAuth 2.0 scopes? If so, does that represent a compatibility issue with things like the Storage API (e.g.
Storage.get()
)?Did anyone use amazon-cognito-identity-js? In the changelog they mentioned custom scopes but I can’t see a hint how to define them. Anybody used this as alternative and get a token with access to API Gatway with cognito?