Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public signIn(): void {
  2. this.googleAuth.getAuth()
  3. .subscribe((auth) => {
  4. auth.grantOfflineAccess().then(this.signInCallback);
  5.  
  6. auth.signIn().then(res => this.signInSuccessHandler(res));
  7. },
  8. );
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement