我正在尝试获取azure图形api令牌而不是365我有该部分工作。
我也使用adal4service来获取令牌,但我似乎无法正确获取令牌。
this.http.get('https://graph.windows.net/me?api-version=1.6',
{
headers: new Headers({ "Authorization": "Bearer " + this.Adal4Service.acquireToken("https://graph.windows.net") })
})
.subscribe(res => {
// Check the response status before trying to display files
if (res.status === 200){
this.result = res.json().value;
}
else
alert("An error occurred calling the Microsoft Graph: " + res.status);
});