Firebase custom domain with facebook authentication -
facebook authentication not working custom domain on firebase.
fbref = new firebase("https://my-app.firebaseio.com/") facebookcallback = (error, authdata) -> if error console.log 'login failed!', error else console.log 'authenticated payload:', authdata fbref.authwithoauthredirect 'facebook', facebookcallback, {scope: 'email'} i set facebook authentication , custom domain name firebase (really nice setup experience way!) authentication works localhost:8080 , my-app.firebaseapp.com not work using www.my-custom-domain.com.
there redirection going on , url gets appended https://www.my-custom-domain.com#?&__firebase_request_key=........ , hash query parameter disappears i'm not logged in.
i'm missing in docs?
Comments
Post a Comment