Angular 2使用本地ADFS进行身份验证

前端之家收集整理的这篇文章主要介绍了Angular 2使用本地ADFS进行身份验证前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们决定使用Angular 2作为我们新项目的框架.在尝试处理事物的安全方面时,我在使用本地ADFS进行身份验证方面找不到多少.有很多处理Azure AD,但这不是我们的选择.
有谁知道一种方法能够设置Angular 2成功验证ADFS?
您可以使用ng2-adal npm library成功实现此功能,您可以像为Azure AD实现它一样实现它,而是使用ADFS值填充secret-service.js的值,如下所示:
import { Injectable } from '@angular/core';

@Injectable()
export class AdfsSecretService {
  private endpoints: any = {
    'http://{your-website-url}/':
    'http:/{the-service-provider-identifier}',// as registered in ADFS
  };

  public get adalConfig(): any {
    return {
        instance: 'https://{your.adfs.site}/',tenant: 'adfs',clientId: '{adfs-client-guid}',redirectUri: window.location.origin + '/',postlogoutRedirectUri: window.location.origin + '/',endpoints: this.endpoints
    };
  }
}

你可以在图书馆的自述文件部分找到一个例子的链接.

在ADFS方面,您需要在ADFS下注册您的应用程序作为应用程序组,有关更多信息,请参阅此technet article

原文链接:https://www.f2er.com/angularjs/140326.html

猜你在找的Angularjs相关文章