Microsoft Graph错误InvalidAuthenticationToken

时间:2016-11-28 10:46:50

标签: microsoft-graph office365api adal.js

当我尝试从MS Graph检索一些数据时,我收到以下错误:

{error: {code: "InvalidAuthenticationToken", message: "Access token validation failure.",…}}
error:{code: "InvalidAuthenticationToken", message: "Access token validation failure.",…}
code:"InvalidAuthenticationToken"
innerError:{request-id: " xxx ", date: "2016-11-28T10:25:52"}
date : "2016-11-28T10:25:52"
request-id: " xxx "
message : "Access token validation failure."

该应用程序是一个SharePoint加载项,应该从Office 365中读取一些用户和组信息。

我使用以下代码来检索数据:

$.ajax({
            type: "GET",
            url: "https://graph.microsoft.com/v1.0/me/",
            headers: {
                'Accept': 'application/json',
                'Authorization': 'Bearer' + token
            }
        }).done(function (response) {

            console.log(response);

            //alert(response);

        }).fail(function () {
            console.log('Error occurred.');
        });

对于身份验证,我使用adal.js.登录后()我得到了id_token。当请求发出时,令牌被传递给函数。

有没有人有同样的问题,可以提供帮助? 提前谢谢!

1 个答案:

答案 0 :(得分:0)

要调用Microsoft Graph REST,我们需要提供访问令牌。客户端使用 id_token 来验证登录用户。

要获取Microsoft Graph REST的deligate访问令牌,我们需要发出两个请求。第一个请求是从授权端点获取授权码。第二个请求是使用第一个请求中的代码get来交换令牌。关于详细请求,您可以参考以下链接:

Microsoft Graph app authentication using Azure AD