我创建了一个 Angular 应用程序,我必须在其中使用 Azure DevOps REST API 来检索票证详细信息。我正在使用@azure/msal-angular", "@azure/msal-browser"
包针对客户端 Azure-AD 对用户进行身份验证。
我正在使用这个文档,它说 URL 的语法应该类似于 GET https://dev.azure.com/{organization}/{project}/_apis/wit/workitems/{id}
对我不起作用的东西
但是当我粘贴GET https://[ClientURL.com]/[resource/location]/_apis/wit/workitems?ids=123
到浏览器地址栏时,我得到 JSON 响应。
我正在使用令牌通过调用我的客户端 url 来使用 REST 服务,如下所示
GET https://[ClientURL.com]/[resource/location]/_apis/wit/workitems?ids=123
我正在拦截MsalInterceptor
将添加身份验证标头的请求。
我收到一条错误消息Interceptor - acquireTokenSilent rejected with error. Invoking interaction to resolve.
我找不到任何足够好的 Angular 文档,并且无法理解我是否必须再次对 REST API 进行身份验证或 AD 身份验证应该没问题。
更新
该应用程序已经使用 C# 构建。我的客户希望它使用 Angular 开发。这是我的登录配置
export function MSALInstanceFactory(): IPublicClientApplication {
return new PublicClientApplication({
auth: {
clientId: '' // my registered angular app clientId,
authority: 'https://login.microsoftonline.com/my_tenentid',
redirectUri: 'https://localhost:8080',
},
cache: {
cacheLocation: 'localStorage'
}
})
}
我正在使用 MSAL 对我的应用程序进行身份验证
loginMsal() {
this.msalService.loginPopup().subscribe(
(response: AuthenticationResult) => {
this.loginSuccessfull(response)
})
}
需要帮忙!