使用角度angular-oauth2-oidc和SSO的OAuth2

时间:2019-03-20 02:35:36

标签: angular oauth-2.0 single-sign-on

这可能是我异常密集的情况。

我已经完成了以下文档中的所有步骤:https://manfredsteyer.github.io/angular-oauth2-oidc/

我设法返回了远程html登录页面,但是Angular应用抛出了异常-

error loading discovery document HttpErrorResponse {headers: HttpHeaders, status: 200, statusText: "OK", etc. etc. etc.

core.js:12584 ERROR Error: Uncaught (in promise): HttpErrorResponse: {"headers": {"normalizedNames":

这是我的app.component.ts

import { Component, OnInit } from '@angular/core';
import { OAuthService } from 'angular-oauth2-oidc';
import { JwksValidationHandler } from 'angular-oauth2-oidc';
import { authConfig } from './metex/config/auth.config';
import { Router } from '@angular/router';

import { AnalyticsService } from './@core/utils/analytics.service';

@Component({
  selector: 'metex-dashboard',
  template: '<router-outlet></router-outlet>',
})
export class AppComponent implements OnInit {

  constructor(
    private analytics: AnalyticsService,
    private oauthService: OAuthService,
  ) {
    this.oauthService.configure(authConfig);
    this.oauthService.tokenValidationHandler = new JwksValidationHandler();
    this.oauthService.loadDiscoveryDocumentAndLogin();
    this.oauthService.initImplicitFlow();
  }

  ngOnInit(): void {
    this.analytics.trackPageViews();
  }
}

请发送帮助:)

1 个答案:

答案 0 :(得分:0)

我设法解决了这个问题,尽管不幸的是这并不是什么聪明的事情。我正在使用的Oauth中有一个自定义步骤,并且复制了我SWEAR复制的配置文件,但我从未像以往那样纯用户错误。