是否有休息电话以获取 SharePoint 在线或驱动器上文档的项目 ID?
Is there a rest call to get the item id for a document on SharePoint online or on drive?
我需要获取上传到SharePoint online的文档信息。但我无法使用项目 ID,因为无法跟踪预上传的文档。
有没有rest call可以给出所有文件的列表
在 SharePoint Online 或一个驱动器上显示 drive/folder?
Is there a rest call to get the item id for a document on SharePoint
online or on drive?
对于这个问题,您可以通过文件系统路径或 ID 检索驱动器中 DriveItem 的元数据。详情请参考这个document.
Is there a rest call that can give the list of all the documents
Present on a drive/folder on SharePoint online or one drive?
对于这个问题,您可以使用以下 api 来获取文件夹中的所有文件。具体可以参考这个case.
<YouDomainServer>/_api/Web/GetFolderByServerRelativeUrl(<relativepath>)/Files
此外,您还可以使用Graph API 来获取用户在SharePoint 中的一盘数据。您可以参考此 blog and 以获得帮助。
我需要获取上传到SharePoint online的文档信息。但我无法使用项目 ID,因为无法跟踪预上传的文档。 有没有rest call可以给出所有文件的列表 在 SharePoint Online 或一个驱动器上显示 drive/folder?
Is there a rest call to get the item id for a document on SharePoint online or on drive?
对于这个问题,您可以通过文件系统路径或 ID 检索驱动器中 DriveItem 的元数据。详情请参考这个document.
Is there a rest call that can give the list of all the documents Present on a drive/folder on SharePoint online or one drive?
对于这个问题,您可以使用以下 api 来获取文件夹中的所有文件。具体可以参考这个case.
<YouDomainServer>/_api/Web/GetFolderByServerRelativeUrl(<relativepath>)/Files
此外,您还可以使用Graph API 来获取用户在SharePoint 中的一盘数据。您可以参考此 blog and