Not getting response after Angular Fire Auth

前端 未结 1 987
忘了有多久
忘了有多久 2021-01-23 12:27

I\'m not getting response after register a user with angularfire. The user email appears on Angular\'s Authentication Base, but signed-in row is empty and seems not to execute t

相关标签:
1条回答
  • 2021-01-23 12:52

    I have tested your code using angularfire 2.0.0 and firebase 3.0.0 and the problem surely relies on angularfire 2.0.0. By updating it to version 2.0.1 I was able to execute the code as expected.

    So make sure you replace your script links to the latest firebase and angularfire version.

    <script src="https://www.gstatic.com/firebasejs/3.0.5/firebase.js"></script>
    
    <script src="https://cdn.firebase.com/libs/angularfire/2.0.1/angularfire.min.js"></script>
    

    Working jsFiddle for demonstrating.

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