【问题标题】:Downloading Sharepoint File using Microsoft Graph API not showing content attribute使用 Microsoft Graph API 下载 Sharepoint 文件不显示内容属性
【发布时间】:2019-07-13 04:07:47
【问题描述】:

我正在尝试使用 Microsoft Graph API 从 SharePoint 在线下载文件。 Graph API 不允许我使用 /Content。

这是我正在使用的端点:

https://graph.microsoft.com/v1.0/sites/<host.sharepoint.com>/lists/<ListID>/items/<ItemID>

这是得到的(删除的值):

{
"@odata.context","@odata.etag","createdDateTime","eTag","id","lastModifiedDateTime","webUrl","createdBy"{"user": {"email","id","displayName"}},   "lastModifiedBy": {"user": {"email","id","displayName"}},
"parentReference": {"id"},
"contentType": {"id"},
"fields@odata.context",
"fields": {"@odata.etag","FileLeafRef","id","ContentType","Created",    "AuthorLookupId","Modified","EditorLookupId","_CheckinComment",      "LinkFilenameNoMenu","LinkFilename","DocIcon","FileSizeDisplay",       "ItemChildCount","FolderChildCount","_ComplianceFlags","_ComplianceTag",        "_ComplianceTagWrittenTime","_ComplianceTagUserId","_CommentCount",        "_LikeCount","Edit","_UIVersionString","ParentVersionStringLookupId",       "ParentLeafNameLookupId"
}

}

当我尝试添加/内容时,我得到:

{
"error": {
    "code": "BadRequest",
    "message": "Resource not found for the segment 'content'.",
    "innerError": {
        "request-id": "<ReqID>",
        "date": "<date>"
    }
}

}

如何使用 API 下载此文件?

【问题讨论】:

    标签: sharepoint postman microsoft-graph-api sharepoint-online


    【解决方案1】:

    端点https://graph.microsoft.com/v1.0/sites/{site-id}/lists/{list-id}/items/{item-id} 返回ListItem resourceContentDriveItem resource 的属性

    表示驱动器中的项目,例如文档、照片、视频或 文件夹资源

    这就是发生此错误的原因。

    鉴于提供的端点,它可以修改为

    GET https://graph.microsoft.com/v1.0/sites/{site-id}/lists/{list-id}/items/{item-id}/driveItem/content
    

    download a content

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2017-07-01
      • 1970-01-01
      • 1970-01-01
      • 2018-09-23
      • 2016-02-25
      • 1970-01-01
      • 1970-01-01
      • 2022-11-04
      相关资源
      最近更新 更多