How to use the angular-auth-oidc-client.AuthorizationState.authorized function in angular-auth-oidc-client

To help you get started, we’ve selected a few angular-auth-oidc-client examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github damienbod / angular-auth-oidc-sample-google-openid / AngularGoogleClient / angularApp / app / app.component.ts View on Github external
private onAuthorizationResultComplete(authorizationResult: AuthorizationResult) {

        const path = this.read('redirect');
        console.log('Auth result received AuthorizationState:'
            + authorizationResult.authorizationState
            + ' validationResult:' + authorizationResult.validationResult);

        if (authorizationResult.authorizationState === AuthorizationState.authorized) {
            this.router.navigate([path]);
        } else {
            this.router.navigate(['/Unauthorized']);
        }
    }