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


TypeScript OAuthService.configure方法代碼示例

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


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

示例1: constructor

 constructor(
   private _router: Router, private _http: HttpClient, private oauthService: OAuthService){
       this.oauthService.configure({
           loginUrl: 'http://localhost:8081/spring-security-oauth-server/oauth/authorize',
           redirectUri: 'http://localhost:8086/',
           clientId: 'sampleClientId',
           scope: 'read write foo bar',
           oidc: false
       })
       this.oauthService.setStorage(sessionStorage);
       this.oauthService.tryLogin({});      
   }
開發者ID:eugenp,項目名稱:spring-security-oauth,代碼行數:12,代碼來源:app.service.ts

示例2: reject

            .subscribe(conf => {
                oauthService.configure({...conf, ...OPENID_COMMON_CONF});

                // enable auto silent refresh of token
                oauthService.setupAutomaticSilentRefresh();

                // debug
                // oauthService.events.subscribe(e => console.log(e));

                oauthService.tryLogin().then(() => {
                    if (!oauthService.hasValidAccessToken()) {
                        oauthService.initImplicitFlow();
                        reject();
                    }
                    resolve(true);
                });

            });
開發者ID:andrask,項目名稱:CloudFlow,代碼行數:18,代碼來源:auth.init.ts

示例3: configureWithNewConfigApi

    // This api will come in the next version
    private configureWithNewConfigApi() {

      this.oauthService.configure(authConfig);
      this.oauthService.tokenValidationHandler = new JwksValidationHandler();
      this.oauthService.loadDiscoveryDocumentAndTryLogin();

      // Optional
      this.oauthService.setupAutomaticSilentRefresh();

      this.oauthService.events.subscribe(e => {
        console.debug('oauth/oidc event', e);
      });

      this.oauthService.events.filter(e => e.type === 'session_terminated').subscribe(e => {
        console.debug('Your session has been terminated!');
      });
      
      this.oauthService.events.filter(e => e.type === 'token_received').subscribe(e => {
        // this.oauthService.loadUserProfile();
      });

    }
開發者ID:bokzor,項目名稱:angular-oauth2-oidc,代碼行數:23,代碼來源:app.component.ts

示例4: configureWithoutDiscovery

 private configureWithoutDiscovery() {
   this.oauthService.configure(noDiscoveryAuthConfig);
   this.oauthService.tokenValidationHandler = new JwksValidationHandler();
   this.oauthService.tryLogin();
 }
開發者ID:bokzor,項目名稱:angular-oauth2-oidc,代碼行數:5,代碼來源:app.component.ts

示例5: configureWithNewConfigApi

 private configureWithNewConfigApi() {
   this.oauthService.configure(authConfig);
   this.oauthService.tokenValidationHandler = new JwksValidationHandler();
   this.oauthService.loadDiscoveryDocumentAndTryLogin();
 }
開發者ID:hackherlin,項目名稱:gh-explorer,代碼行數:5,代碼來源:app.component.ts


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