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'm getting a 404 when trying to test email link sign in on localhost. I've followed the advice in #88 and tried changing SignInFlow to redirect.
signInFlow: firebase.auth().isSignInWithEmailLink(window.location.href) ? 'redirect' : 'popup'
Is there any further configuration needed to get email link sign in working?
Thank you for any advice
The text was updated successfully, but these errors were encountered:
After this fix all working for me. My config:
const uiConfig = { signInFlow: firebase.auth().isSignInWithEmailLink(window.location.href) ? 'redirect' : 'popup', signInOptions: [ firebase.auth.GoogleAuthProvider.PROVIDER_ID, { provider: firebase.auth.EmailAuthProvider.PROVIDER_ID, signInMethod: firebase.auth.EmailAuthProvider.EMAIL_LINK_SIGN_IN_METHOD }, { provider: firebase.auth.PhoneAuthProvider.PROVIDER_ID, defaultCountry: 'RU', whitelistedCountries: ['RU', '+7'] }, 'anonymous' ], callbacks: { // Avoid redirects after sign-in. signInSuccessWithAuthResult: () => false, }, };
Sorry, something went wrong.
No branches or pull requests
I'm getting a 404 when trying to test email link sign in on localhost. I've followed the advice in #88 and tried changing SignInFlow to redirect.
signInFlow: firebase.auth().isSignInWithEmailLink(window.location.href) ? 'redirect' : 'popup'
Is there any further configuration needed to get email link sign in working?
Thank you for any advice
The text was updated successfully, but these errors were encountered: