sabyasachibiswal / angular5-social-login

Social authentication module for Angular 5. Includes Facebook and Google login with AOT compatibility.
40 stars 74 forks source link

google sigin is not giving `token_type` in the response #22

Open lalitmee opened 6 years ago

lalitmee commented 6 years ago

When I am calling this function

this.socialAuthService.signIn(socialPlatformProvider).then(
      (userData) => {
        console.log(socialPlatform+" sign in data : " , userData);
        // Now sign-in with userData
        ...

      }
    );

Is there any way to get that? 🤔

Please help. Thank you.