我可以将文件从Sharepoint复制到AWS S3吗



是否可以将文件从Sharepoint复制到s3?最好从AWS侧进行编码。

我找过了,但没看到太多。有一个类似的标题,但这并不能回答问题:

从sharepoint在线上传文件到aws s3 bucket

这是肯定的。SharePoint online有一个rest API我使用一个名为office365的python包,它实现了一个SharePoint客户端来处理您需要的大多数日常操作。

回购是:https://github.com/O365/python-o365

关于我第一次挣扎的一些提示:

  • ClientContext对象需要您要验证的SharePoint库的基本站点URL,库文档:https://mysharepoint.mydomain.com/sites/mysite/shareddocuments/

  • 必须传递给客户端上下文的URL为:https://mysharepoint.mydomain.com/sites/mysite

  • UserCredential方法要求用户采用以下格式:user@mydomain

相关内容

  • 没有找到相关文章

最新更新