0

我正在尝试从端点提取数据https://graph.microsoft.com/v1.0/me/。我已经使用 python 完成了这项工作,但我似乎无法使用 vanilla js 从 Microsoft Graph 获取数据。

当我尝试执行获取请求时。我收到 200 响应,但响应对象内没有任何内容。

这是获取代码:

fetch("https://graph.microsoft.com/v1.0/me/", {
  method: "GET",
  "headers": {
    "authorization": "Bearer ENTERTOKENHERE"}
}).then(data =>{console.log(data)});

我得到以下回复:

Response {type: 'cors', url: 'https://graph.microsoft.com/v1.0/me/', redirected: false, status: 200, ok: true, …}

但我期待更多的回应,比如我从https://developer.microsoft.com/en-us/graph/graph-explorer网站得到的回应,如下所示:

{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users/$entity",
    "businessPhones": [],
    "displayName": "Edd Bighead",
    "givenName": "Edd",
    "jobTitle": null,
    "mail": "Edd@conglomo.onmicrosoft.com",
    "mobilePhone": null,
    "officeLocation": null,
    "preferredLanguage": "en-US",
    "surname": "Bighead",
    "userPrincipalName": "Edd@conglomo.com",
    "id": "2fa321d9-bda3-41c1-8be8-5d4049ed8765"
}

仅使用 vanilla js 从 msgraph 获取数据有什么遗漏吗?

4

1 回答 1

0

我想通了 - 我需要对数据进行 jsonize 处理,然后打印该数据。不敢相信我错过了。哈哈

fetch("https://graph.microsoft.com/v1.0/me/", {
  method: "GET",
  "headers": {
    "authorization": "Bearer ENTERTOKENHERE"}
}).then(response => response.json())
.then(data => {console.log(data)})
于 2021-12-25T22:09:04.307 回答