【发布时间】:2016-11-16 08:51:25
【问题描述】:
根据这个官方文档List thumbnails for a DriveItem,我们可以使用这个API获取OneDrive照片缩略图。
当我使用 Microsoft Graph API 从 OneDrive 发送请求以获取照片缩略图时,服务器返回 200 并且工作正常。
https://graph.microsoft.com/v1.0/users/{my user id}/drive/items/{my photo object id}/thumbnails
但是,在尝试从其他用户的 onedrive 获取照片缩略图时,服务器返回 404 not found。
https://graph.microsoft.com/v1.0/users/{other user's id}/drive/items/{other user's photo id}/thumbnails
我确实确定其他用户的照片存在并且 id 是正确的。
我做错了什么还是访问其他用户的 OneDrive 照片有限制?
【问题讨论】:
标签: office365 onedrive office365api office-js microsoft-graph-api