无法使用 vanilla js 获取 msgraph 数据

can't fetch msgraph data using vanilla js

我正在尝试从端点 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 获取数据时我是否遗漏了什么?

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

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