尝试通过Angular应用程序使用Azure AD进行身份验证。由于网络上有许多过时的示例,因此很难理解如何做。我一直在关注github上的最新文档,但在访问该应用程序时始终遇到此错误:
ClientConfigurationError: No redirect callbacks have been set. Please call handleRedirectCallback() with the appropriate function arguments before continuing
我应该怎么做才能使其正常工作?
app-routing.module.ts
const routes: Routes = [
{ path: '', component: AppComponent, canActivate: [MsalGuard] },
{ path: 'auth-callback', component: DashboardComponent }
];
app.module.ts
const config = {
auth: {
clientId: 'my-client-id',
//popUp: true,
consentScopes: ['https://graph.microsoft.com/User.ReadWrite'],
redirectUri: 'http://localhost:4200/auth-callback',
}
};
@NgModule({
declarations: [
AppComponent,
DashboardComponent
],
imports: [
MsalModule.forRoot(config),
BrowserModule,
AppRoutingModule
],
providers: [
{
provide: HTTP_INTERCEPTORS,
useClass: MsalInterceptor,
multi: true
}
]
,
bootstrap: [AppComponent]
})
export class AppModule {
constructor() {
const myMSALObj = new UserAgentApplication(config);
function authCallback(error, response) { }
myMSALObj.handleRedirectCallback(authCallback);
}
答案 0 :(得分:1)
即使不执行任何操作,也需要添加回调。 您可以将其添加到模块构造函数中。
@NgModule({ ... })
export class AppModule {
constructor(msalService: MsalService) {
msalService.handleRedirectCallback(_ => { });
}
}
不久前,我创建了一篇有关该主题的博客文章! Angular 9破坏了我的身份验证流程,因此必须弄清楚。
您可以在此处查看完整的代码以及所有应注意的细节。 https://www.pshul.com/2020/03/29/authenticate-your-angular-9-to-azure-ad-using-msal/