有没有办法使用会话令牌创建 S3 连接?
在 boto
和 S3
模块中,S3 连接构造函数采用访问密钥和秘密密钥。是否存在也采用会话令牌的连接对象?
In boto
and S3
modules the S3 connection constructor takes the access key and the secret key. Is there a connection object that exists that also takes a session token?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道这个问题很老了,但它是谷歌上为数不多的结果之一。因此,您可以执行以下操作(至少对于 Boto 2.22.1):
I know this question is old, but it's one of the few results on Google. So here is how you can do this (at least with Boto 2.22.1):
目前,该功能尚未在
boto
中实现,但现在已经实现,并将在 2.1 版中实现,或者如果您从 github 查看源代码,现在就可以使用。您可以通过将带有关键字参数
security_token
的令牌传递给boto.connect_s3
来使用会话令牌。我认为会话令牌也将很快在其他地方实施。This hadn't currently been implemented in
boto
but has been now and will be in version 2.1 or is available now if you check out the source from github.You can use a session token by passing the token with the key word argument
security_token
toboto.connect_s3
. I think the session token will be implemented elsewhere soon as well.