添加或上传文件到 Microsoft Teams 文件选项卡中的文件选项卡

Add or Upload files to Files Tab in Microsoft Teams File Tab

我想使用 Microsoft Graph API 在团队的文件选项卡下上传文件。

任何人都可以在这里帮助我使用 Microsoft Graph 中的哪些端点和顺序 API。

谢谢

频道中的“文件”选项卡没有链接到 SharePoint 站点默认文件夹,请查看 Upload Files 此 API 文件大小限制为 4MB。如果您想上传大于 4MB 的文件,您需要以流或块的形式上传文件。

您应该使用图表 API 来完成这项任务。

Microsoft Teams API overview 开始,它有很好的介绍和 4 分钟的视频。

您的下一步是 Graph API documentation. It's a big API, so rather than attempting to read it all I suggest you go straight to the portion specific to Teams

Uploading small files below 4 MB is a bit simpler than uploading larger files.

你也可以稍微作弊,这取决于你想做什么。 Teams 的很多功能实际上都基于 SharePoint。因此,您也可以使用 SharePoint API to upload files 到在 Teams 后面运行的 SP 站点。

文档中有代码示例可帮助您入门。