當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript OAuthService.logOut方法代碼示例

本文整理匯總了TypeScript中angular2-oauth2/oauth-service.OAuthService.logOut方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript OAuthService.logOut方法的具體用法?TypeScript OAuthService.logOut怎麽用?TypeScript OAuthService.logOut使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在angular2-oauth2/oauth-service.OAuthService的用法示例。


在下文中一共展示了OAuthService.logOut方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: constructor

  constructor(
    private oauthService: OAuthService,
    public feature: FeatureService,
    private router: Router,
    private http: Http) {
    try {
      this.oauthService.loginUrl = 'https://accounts.google.com/o/oauth2/v2/auth';
      this.oauthService.redirectUri = window.location.origin;
      this.oauthService.clientId = '280436316587-pc2v79112kdqu0jiruu56m92s8nr4s42.apps.googleusercontent.com';
      this.oauthService.scope = 'openid profile email';
      this.oauthService.oidc = true;
      this.oauthService.setStorage(sessionStorage);
      this.oauthService.logoutUrl = null;

      this.oauthService.tryLogin({
        onTokenReceived: context => {
          if (window.location.hash && window.location.hash.indexOf('access_token') !== -1) {
            this.router.navigate(['home']);
          }
        },
        validationHandler: context => {
          let search = new URLSearchParams();
          search.set('access_token', context.accessToken);
          let v = http.get('https://www.googleapis.com/oauth2/v3/tokeninfo', { search })
            .toPromise().then(x => {
              if (x.json().aud !== oauthService.clientId) {
                console.error('Wrong client_id');
                oauthService.logOut();
              }
            });
          return v;
        }
      });

      if (!this.oauthService.hasValidAccessToken()) {
        this.oauthService.logOut();
      }
    } catch (e) {
      console.error(e);
    }
  }
開發者ID:cackharot,項目名稱:fbeazt,代碼行數:41,代碼來源:app.component.ts

示例2: logout

 public logout() {
     this.oauthService.logOut();
 }
開發者ID:PedroDavid1367,項目名稱:DBSP.Angular2.ReliableSamples,代碼行數:3,代碼來源:home.component.ts

示例3: logoff

 public logoff() {
   this.oauthService.logOut();
   this.router.navigate(['/home']);
 }
開發者ID:cackharot,項目名稱:fbeazt,代碼行數:4,代碼來源:app.component.ts

示例4:

 .toPromise().then(x => {
   if (x.json().aud !== oauthService.clientId) {
     console.error('Wrong client_id');
     oauthService.logOut();
   }
 });
開發者ID:cackharot,項目名稱:fbeazt,代碼行數:6,代碼來源:app.component.ts


注:本文中的angular2-oauth2/oauth-service.OAuthService.logOut方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。