Firebase authWithOAuthRedirect() woes
问题 I'm trying to update my angularjs app to support Firebase 1.1 (I was stick with Firebase 1.0.x). It deprecates firebasesimplelogin, including authentication inside Firebase core. I have been able to successfully implement authentication using authWithOAuthPopup("<provider>", function(error, authData) { ... }); It accepts a callback, which is passed authentication data in authData . On the contrary, I can't undersand how to use authWithOAuthRedirect("<provider>", function(error) { ... });