2

私はこのようにNbAuthOAuth2Tokenを使用しています

this.authService.onTokenChange()
  .pipe(takeUntil(this.destroy$))
  .subscribe((token: NbAuthOAuth2Token) => {
    this.token = null;
    if (token && token.isValid()) {
      this.token = token;
    }
  });

そして、このような私のログイン機能で

  login() {
    this.authService.authenticate('google')
      .pipe(takeUntil(this.destroy$))
      .subscribe((authResult: NbAuthResult) => {
      });
  }

ユーザーデータを取得するには?私は使っていますscope: 'https://www.googleapis.com/auth/userinfo.profile',

4

0 に答える 0