使用 ASIS3 启用 HTTPS
我正在使用 ASIHttpRequest (ASIS3) 的 Amazon S3 支持库。它提供了用于与 S3 存储库交互的高级抽象选择器。
默认情况下,它使用标准 HTTP 的 URL,但我想启用 HTTPS。
有谁知道该怎么做?
谢谢!
I am using the Amazon S3 support library for ASIHttpRequest (ASIS3). It provides high level abstracted selectors for interacting with S3 repositories.
By default it is using URLs using standard HTTP, but I'd like to enable HTTPS.
Does anyone know how to do this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASIS3Request 基类中有一个名为 requestScheme 的属性。它的默认值是 ASIS3RequestSchemeHTTP,将其更改为 ASIS3RequestSchemeHTTPS,所有 S3 调用都将使用 HTTPS。
这是 ASIS3Request 的初始化选择器,将 requestScheme 更改为使用 HTTPS。
There is a property in the base ASIS3Request class called requestScheme. It's default value is ASIS3RequestSchemeHTTP, change it to ASIS3RequestSchemeHTTPS and all S3 calls will use HTTPS.
Here is the initialization selector for ASIS3Request, changing requestScheme to use HTTPS.