如何使用 Graph API 获取 SharePoint Online 列表项附件?
How To Get SharePoint Online List Items Attachments Using Graph API?
对于 SharePoint Online 任何列表中的附件项,图表浏览器只能获取包含值“true”或“false”的附件属性。
我无法获取所附图片、pdf、文本等的链接
使用 Rest API 我们可以轻松展开并抓取附加链接。但是,使用 Graph Explorer 我们无法展开附件 属性。我需要帮助我们如何使用 Graph API.
获取 SharePoint 在线列表中的附件链接
我在 Graph Explorer 中尝试过以下查询:
https://graph.microsoft.com/v1.0/sites/{site-id}/lists/{list-id}/items/{item-id}
Attachments: true
遗憾的是,尚不支持通过 Microsoft Graph API 检索 ListItem
附件详细信息。
但是你可以求助于 SharePoint REST API,例如:
GET https://{tenant}.sharepoint.com/_api/web/lists/getbytitle('{list-title}')/items({item-id})?$expand=AttachmentFiles
对于 SharePoint Online 任何列表中的附件项,图表浏览器只能获取包含值“true”或“false”的附件属性。
我无法获取所附图片、pdf、文本等的链接
使用 Rest API 我们可以轻松展开并抓取附加链接。但是,使用 Graph Explorer 我们无法展开附件 属性。我需要帮助我们如何使用 Graph API.
获取 SharePoint 在线列表中的附件链接我在 Graph Explorer 中尝试过以下查询: https://graph.microsoft.com/v1.0/sites/{site-id}/lists/{list-id}/items/{item-id}
Attachments: true
遗憾的是,尚不支持通过 Microsoft Graph API 检索 ListItem
附件详细信息。
但是你可以求助于 SharePoint REST API,例如:
GET https://{tenant}.sharepoint.com/_api/web/lists/getbytitle('{list-title}')/items({item-id})?$expand=AttachmentFiles