google oAuth redirect_uri in angularjs

399 Views Asked by At

How to pass paramaters to firebase google auth using redirect. I need to pass a customparameter redirect_uri but I am unable to do it. The snippet goes here..

var provider = new firebase.auth.GoogleAuthProvider();
       provider.setCustomParameters({
           'redirect_uri': 'http://localhost:3002/auth-login'
        });

      //then i call the redirect function

        firebase.auth().signInWithRedirect(provider);
2

There are 2 best solutions below

0
On BEST ANSWER

presently unsupported in firebase

0
On

According to present documentation for setCustomParameters:

Reserved required OAuth 2.0 parameters such as 'client_id', 'redirect_uri', * 'scope', 'response_type' and 'state' are not allowed and will be ignored.