GET https://auth.firebase.com/favicon.ico 404 (Not Found)

Hi,

My app was ok on browser and the device. But now I’m trying to athenticate with Firebase & Facebook.

Then I get this error on device :

GET https://auth.firebase.com/favicon.ico 404 (Not Found)

Please, how can I fix this ?

Thank you

This should not be a problem, this is often the case for any API server.
The problem is probably somewhere else.

Hi gmarziou,

I’ll look for other possibilities.

Thank you

No way. It’s driving me crazy.

I’m using this code ( from https://www.firebase.com/docs/web/guide/login/facebook.html ) :

var ref = new Firebase(“https://.firebaseio.com”);
ref.authWithOAuthPopup(“facebook”, function(error, authData) {
if (error) {
console.log(“Login Failed!”, error);
} else {
console.log(“Authenticated successfully with payload:”, authData);
}
});`

All works ok on browser ( via ionic serve ) but I have the error described at title on the device after Facebook login screen is displayed and ok and the login button is pressed.