我在网络浏览器中使用以下方法使用Microsoft Graph获取DriveItem的文件内容:
GET /drives/{drive-id}/items/{item-id}
// Get the @microsoft.graph.downloadUrl property of the returned DriveItem
GET {downloadUrl}
这需要两次GET
次来电。
我也知道这个API:
GET /drives/{drive-id}/items/{item-id}/content
如此处所述:
Download the contents of a DriveItem。
但是/content
端点有两个问题:
如何在一个请求中获取DriveItem的文件内容?