Office 365 api(或同等产品)用于 Word/Excel 无需帐户的协作编辑?

Office 365 api (or equivalent) for Word/Excel collaborative editing without account?

有没有办法使用 API create/edit Word/Excel 文档,然后允许用户编辑它们而无需 Office 365 帐户(使用某些 url基于令牌)?

我的网站已经允许用户上传文档,我想在我的网站上添加用户创建文档(文字处理器和电子表格)的可能性,并让他们可以在线编辑它们(就像在 Office 365 上一样)。

有没有办法使用 Office 365 实现此目的 API?或者可能是某种 "offline" API(所有文件都存储在我的网站上)?或者也许是一些开源工具?

I would like to add on my website the possibility for users to create documents (word processor and spreadsheet)

请检查this thread : There is no API currently to create a new file of a particular type, you could firstly upload different kinds of empty file(Word, Excel, PowerPoint) as templates, and then you can create any kinds of documents by copying the template to another file via Microsoft Graph api . Graph API provides copy method to copy an existing file to another: Copy a driveItem to a new location

要在线编辑文件。您可以create a sharing link 使用 Microsoft Graph api 编辑文件。您可以选择范围以使任何人或组织内部的人都可以访问该项目,进行类型编辑,这将为该项目创建一个读写 link 与 office online 。或者您可以先使用 rest api 访问和下载您的文件,编辑本地文件并再次上传到 onedrive/sharepoint。