Can I get updated emailVerified without logging out?

前端 未结 1 427
终归单人心
终归单人心 2020-12-02 02:32

I have following flow for my sign up process:

  1. User fills out details and signs up (gets send verification email)

  2. After this user is logged i

相关标签:
1条回答
  • 2020-12-02 03:02

    Based on android I did

    firebase.auth().currentUser.reload().then(() => {
      console.log(firebase.auth().currentUser)
    })
    

    this returns updated information about the user, I couldn't find this anywhere in the docs for some reason

    0 讨论(0)
提交回复
热议问题