Skip to content Skip to sidebar Skip to footer

Not Getting Response After Angular Fire Auth

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 the co

Solution 1:

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.

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

Working jsFiddle for demonstrating.

Post a Comment for "Not Getting Response After Angular Fire Auth"