如何使用 Rest 在 SharePoint 中获取多个模板类型列表
Posted
技术标签:
【中文标题】如何使用 Rest 在 SharePoint 中获取多个模板类型列表【英文标题】:How to get multiple template types list in SharePoint using Rest 【发布时间】:2021-08-25 15:08:47 【问题描述】:我正在尝试列出所有自定义列表和事件列表。
这是我在 URL 中的代码
url:"http://example.com/_api/web/lists/?filter=BaseTemplate eq 100 and BaseTemplate eq 106 and Hidden eq false"
如果我只做一个模板,它可以工作,但当我做多个模板时,它什么也不返回。
【问题讨论】:
【参考方案1】:尝试使用以下端点:
/_api/web/lists/?$filter=(BaseTemplate eq 100 or BaseTemplate eq 106) and Hidden eq false
【讨论】:
以上是关于如何使用 Rest 在 SharePoint 中获取多个模板类型列表的主要内容,如果未能解决你的问题,请参考以下文章
如何通过 REST API 在另一台服务器上为 Sharepoint 2013 和 Sharepoint Online 运行的脚本中更新 SharePoint 列表?
Sharepoint 授权令牌在 REST api 中的使用
使用 Python 访问 Office365 Sharepoint REST 端点(适用于 Python 的 Office365 Sharepoint REST 客户端)