作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 REST API 从 OneDrive 下载 Excel 工作表
文档:
建议调用此端点的文档:GET/me/drive/items/{item-id}/content
我使用 oauth2 正确登录,所有其他方法均有效,例如“/me”、“/me/drive/recent”、“/me/drive/sharedWithMe”
授予的凭据
GET/me/drive/items/{item-id}/content
时出现错误消息{
"error": {
"code": "itemNotFound",
"innerError": {
"client-request-id": "aaaaaaa-aaaa-aaaa-aaaa-aaaaa",
"date": "2020-09-26T09:19:08",
"request-id": "aaaaa-aaaa-aaaa-aaa-aaa"
},
"message": "The specified item does not have content."
}
}
GET/me/drive/items/{item-id}
文件存在且大小:46.272 字节
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#users('<a_username>%40hotmail.com')/drive/items/$entity",
"createdBy": {
"user": {
"displayName": "<a_name> ",
"id": "<a_drive_id>"
}
},
"createdDateTime": "2020-09-27T07:29:04.893Z",
"eTag": "<an_eTag>",
"fileSystemInfo": {
"lastAccessedDateTime": "2020-09-27T11:52:31Z"
},
"id": "<a_drive_id>!<a_sub_id>",
"lastModifiedBy": {
"user": {
"displayName": "<a_name> ",
"id": "<a_drive_id>"
}
},
"lastModifiedDateTime": "2020-09-27T18:46:25.073Z",
"name": "a_filename.xlsx",
"parentReference": {
"driveId": "<a_drive_id>",
"driveType": "personal"
},
"remoteItem": {
"file": {},
"fileSystemInfo": {
"lastAccessedDateTime": "2020-09-27T11:52:31Z"
},
"id": "<an_id>!7757",
"name": "a_filename.xlsx",
"parentReference": {
"driveId": "<an_id>",
"driveType": "personal"
},
"size": 46272,
"webUrl": "https://1drv.ms/u/<a_letter>!<a_web_url_id>"
},
"webUrl": "https://1drv.ms/u/<a_letter>!<a_web_url_id>"
}
微软的API实现有bug吗?!?
我做错了什么?
最佳答案
首先我们需要注意的是,在api文档中,提到了:
Only driveItems with the file property can be downloaded.
因此,当我们调用 https://graph.microsoft.com/v1.0/me/drive/时,我们需要确保目标项在响应中具有属性
file
项目/item_id
那么我们需要关注this section ,当我们成功调用下载api时,会返回302重定向
关于azure - OneDrive REST API : "message": "The specified item does not have content." when downloading a file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64099004/
我是一名优秀的程序员,十分优秀!