如何通过API创建一个空的Excel工作簿?

我正在尝试使用Microsoft Graph API在OneDrive中创建一个空的Excel工作簿。我尝试了各种请求,但OneDrive并未发现仅基于扩展名就是Excel。我发现的唯一示例是C#SDK示例,我正在寻找没有SDK的另一种语言

The following creates the file but creates it with a mime-type of application/octet-stream

PUT /v1.0/me/drive/items/root:/NewWorkbook.xlxs:/content HTTP/1.1
Host: graph.microsoft.com
Content-Type: application/json
Authorization: Bearer <REDACTED>

{
  "name": "NewWorkbook.xlxs",
  "file": {

  }
}

I found a similar ask from a few years ago but Microsoft Graph has undergone a lot of changes since then so I would assume the answers to be somewhat dated https://stackoverflow.com/a/38901596/10255083