在Azure AD的Office365 API中调用身份验证时出现错误403

时间:2014-11-13 07:51:51

标签: azure office365

我正在制作一个Web应用程序来调用Office365 API,并且正在使用Azure AD的身份验证功能。自上周以来我没有任何进展,我们突然遇到了这个错误:

statuscode: 403,
body: '{"error":{"code":"ErrorAccessDenied","message":"Access is denied. Check credentials and try again."}}

以下是我发送的请求

var request = {
    url: url,
    method: method,
    json: (method === constants.GET || method === constants.DELETE) ? null : resource,
    headers: {
        'Authorization': credentials.tokenType + ' ' + credentials.accessToken,
        'User-Agent': clientId,
        'Accept' : 'application/json'
}

有人能解释如何解决这个问题吗?

0 个答案:

没有答案