Skip to content
New issue

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

uiconfig.callbacks are not called for email link sign in method if onAuthStateChanged listener is registered #91

Open
trtg opened this issue Apr 22, 2020 · 6 comments

Comments

@trtg
Copy link

trtg commented Apr 22, 2020

I am using provider: EmailAuthProvider.PROVIDER_ID with EmailAuthProvider.EMAIL_LINK_SIGN_IN_METHOD and flow = redirect. I register a listener for onAuthStateChanged in componentDidMount and I have

uiconfig = { 
  callbacks: { 
     signInSuccessWithAuthResult: function(authResult, redirectUrl){
        console.log("called success callback");
         return false;
      }
   }
} 

(other parts of config skipped for brevity)
The onAuthStateChanged listener will be called but the signInSuccessWithAuthResult callback will not. If I get rid of the listener, the callback is hit. This issue only applies to email link sign in- google, facebook, etc[ work fine and call both the listener and the callback.

I need the signInSuccessWithAuthResult callback to take actions that need to happen only once on signup, rather than every time the user logs in/refreshes the page, which is what onAuthStateChanged would get me.

@jhuleatt @wti806 This seems like it might be related to these other issues issues: #67 or firebase/firebaseui-web#656 any thoughts?

@dankawka maybe related to the issue you called in #67 ?

@francisrod01
Copy link

francisrod01 commented Aug 8, 2020

The same happen to my example where I try to set up the Twitter provider, the signInSuccessWithAuthResult isn't be called and nothing happens on the page, but if I log in with email/password it works.

Next.js examples - with-firebase-authentication
https://github.com/vercel/next.js/blob/canary/examples/with-firebase-authentication

@kyunez
Copy link

kyunez commented Feb 10, 2021

Same here. Call back is not triggered for EMAIL_LINK_SIGN_IN_METHOD.

@jekh
Copy link
Contributor

jekh commented Jan 9, 2022

I just ran into this same issue, the email link sign-in method does not trigger signInSuccessWithAuthResult if an onAuthStateChanged listener is registered. The signInSuccessWithAuthResult callback is extremely useful when working with session cookies, or just in general when there are events triggered by sign-in, so it's unfortunate that you have to sacrifice onAuthStateChanged to use it.

Does anybody know if this is a bug in firebaseui-web-react, or is it an underlying issue in firebaseui-web?

@AlexanderChiclana
Copy link

Been having the same issue, except the callback isnt triggered when certain microsoft accounts log in

@garvitkhamesra
Copy link

Does anyone found a solution for this?

@AntonioVentilii
Copy link

up! same issue for GitHub provider

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants