我们决定使用Angular 2作为我们新项目的框架.在尝试处理事物的安全方面时,我在使用本地ADFS进行身份验证方面找不到多少.有很多处理Azure AD,但这不是我们的选择.
有谁知道一种方法能够设置Angular 2成功验证ADFS?
有谁知道一种方法能够设置Angular 2成功验证ADFS?
您可以使用ng2-adal
npm library成功实现此功能,您可以像为Azure AD实现它一样实现它,而是使用ADFS值填充secret-service.js的值,如下所示:
原文链接:https://www.f2er.com/angularjs/140326.htmlimport { 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 }; } }