iPhone 上的 HTTPS

发布于 2024-07-09 23:50:21 字数 122 浏览 2 评论 0原文

我需要能够使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我也只是我 2024-07-16 23:50:21

NSURLRequest 和 NSURLConnection 就是您正在寻找的。 从这些文档开始。

NSURLRequest and NSURLConnection are what you're looking for. Start with the docs for those.

帅的被狗咬 2024-07-16 23:50:21

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文