israx
israx
I'm facing the same issue.
Hello. We are aware of this issue. We are reviewing a [PR](https://github.com/aws-amplify/amplify-js/pull/10755#discussion_r1081269156) from an external contributor at the moment.
hey @ChristopherGabba `fetchUserAttributes` will return all attributes as optional, the reason is that you can configure Cognito `UserPool` attributes as required and non-required, so at build time there is not...
hello @therealkh , how did you configure your Cognito User pool ? and what can you see in the `Login Experience` tab ? If you want to login with your...
Hello @Deanfei. How does your oauth config look like ? Also make sure you are importing the `signInWithRedirect` API as follows, `import { signInWithRedirect } from 'aws-amplify/auth';` Can you also...
Hello @Deanfei . The code above you describe will be compiled into RN only. Web applications will behave different. Is it possible for you to provide a sample app so...
I see you are using `pnpm` as the package manager. Can you switch to `npm` or `yarn` and see if you still see the code you pointed bundled in the...
hello @jojimcNova . Can you add the following code into the page you are redirected to from your social provider. `import 'aws-amplify/auth/enable-oauth-listener';` This will allow the `signInWithRedirect` to complete the...
@jojimcNova can you make sure to ? 1. call `signInWithRedirect` from the client 2. to enable the ssr flag in the amplify configuration
@jojimcNova yeah the `import 'aws-amplify/auth/enable-oauth-listener';` is used to enable a side effect only. Just to confirm, after doing all of above you are still getting the `code` and `state` params...