本文整理匯總了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({});
}
示例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);
});
});
示例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();
});
}
示例4: configureWithoutDiscovery
private configureWithoutDiscovery() {
this.oauthService.configure(noDiscoveryAuthConfig);
this.oauthService.tokenValidationHandler = new JwksValidationHandler();
this.oauthService.tryLogin();
}
示例5: configureWithNewConfigApi
private configureWithNewConfigApi() {
this.oauthService.configure(authConfig);
this.oauthService.tokenValidationHandler = new JwksValidationHandler();
this.oauthService.loadDiscoveryDocumentAndTryLogin();
}