iPhone 上的 HTTPS
我需要能够使用 https 连接到服务器,我想知道是否有推荐在 iPhone 上执行此操作的方法,但不是: - 未记录的 API 调用 - 不需要在应用程序包中手动存储证书
谢谢大家。
I need to be able to use https to connect to a server and I'm wondering if there's recommended way of doing this on the iPhone that's NOT:
- an undocumented api call
- does not require manually storing certificates in the app bundle
Thanks all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
NSURLRequest 和 NSURLConnection 就是您正在寻找的。 从这些文档开始。
NSURLRequest and NSURLConnection are what you're looking for. Start with the docs for those.
使用 https 时遇到什么问题? URL 加载系统(即 NSURLConnection)和 WebKit 都开箱即用地支持它。 我知道的唯一问题是使用不受信任的证书,而我知道的唯一解决方案是(不幸的是)使用私有 API 调用。 但无论如何,您都不应该发布依赖于与使用不受信任证书的服务器进行通信的应用程序。
What's the problem you have with using https? The URL Loading System (i.e. NSURLConnection) and WebKit both support it out-of-the-box. The only issue I know of is with using untrusted certificates, and the only solution I know of to that is (unfortunately) to use a private API call. But you shouldn't be shipping an app that relies on communicating with a server that uses untrusted certificates anyway.