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