希望大家都平安无事,我正在将我的角度应用程序身份验证从ADAL JS迁移到MSAL JS。
在ADAL JS中,我的ADAL配置如下,并且身份验证按预期进行:
adalConfig: {
tenant: 'GUID',
clientId: 'GUID',
redirectUri: window.location.origin
......
...... // other properties
}
在MSAL Config中,我尝试在app.module.ts中设置相同的属性
MsalModule.forRoot({
auth: {
clientId: "GUID", // Same as the client ID of ADAL JS
authority: https://login.microsoftonline.com/<tenant GUID>/, // Same as the tenant GUID of ADAL JS
redirectUri: OAuthSettings.redirectUri, // This is your redirect URI
},
cache: {
cacheLocation: 'localStorage',
// storeAuthStateInCookie: true, // set to true for IE 11
}
但是我不断收到此错误
“请将关联ID设置为有效的向导”
我尝试查看Microsoft的documentation,但没有提及授权。
任何帮助将不胜感激。
答案 0 :(得分:0)
correlationId
将显示在MSAL日志中。如doc所示,correlationId是唯一标识符,用于将请求与响应映射以进行调试。
您可以尝试使用此link中的代码:
MsalModule.forRoot({
clientID: '00000000-0000-0000-0000-000000000000',
authority: "https://login.microsoftonline.com/common/",
validateAuthority: true,
redirectUri: window.location.origin,
cacheLocation: 'localStorage',
postLogoutRedirectUri: window.location.origin,
navigateToLoginRequestUrl: false,
popUp: false,
unprotectedResources: ["https://www.microsoft.com/en-us/"],
protectedResourceMap: protectedResourceMap,
logger: loggerCallback,
correlationId: "1000",
level: LogLevel.Info,
piiLoggingEnabled: true
})
....