如何使用microsoft graph api获取sharepoint中的列(字段)

时间:2016-11-21 05:31:21

标签: sharepoint microsoft-graph

当我调用Microsoft图形API返回一些属性时,但我需要缺少一些属性。

https://graph.microsoft.com/beta/sharepoint/sites/{site-id}/lists/{list-id}/fields

如果返回类型是选择,我需要知道选择列表,但我没有得到,因为呼叫正确

2 个答案:

答案 0 :(得分:2)

您现在可以使用以下端点获取此信息:

https://graph.microsoft.com/v1.0/sites/{site-Id}/lists/{list-Id}/columns

源:https://docs.microsoft.com/en-us/graph/api/resources/list?view=graph-rest-1.0

答案 1 :(得分:0)

目前,Microsoft Graph API不支持此功能。与此同时,您可以使用SharePoint REST API检索字段信息,包括选择字段中可用的选项。

有关于如何使用SharePoint REST API在MSDN上检索字段的更多详细信息:https://msdn.microsoft.com/en-us/library/office/dn600182.aspx

要调用SharePoint REST API,您需要知道SharePoint网站/列表的URL,并获取该SharePoint租户的访问令牌。