iPhone 中的 HTTPS 连接

发布于 2024-07-24 06:58:11 字数 49 浏览 3 评论 0原文

如何从 iPhone 应用程序连接到 https url? 有可用的示例代码吗?

How to connect to https url from iphone application ?
Is there any sample code available?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

倦话 2024-07-31 06:58:11

与连接到 http URL 的方式相同。 Cocoa Touch API 在幕后完成所有困难的工作。

“Error Domain=kCFErrorDomainCFNetwork Code=306”表示“无法建立连接建立到指定的 HTTP 代理。” 看来您的网络配置有问题。

The same way that you connect to a http URL. The Cocoa Touch API does all the hard stuff behind the scenes.

"Error Domain=kCFErrorDomainCFNetwork Code=306" means "A connection could not be established to the specified HTTP proxy." Seems that there's a problem with your networking configuration.

寄离 2024-07-31 06:58:11

在此处输入代码是使用 tcp 和 sslv3 与服务器建立安全连接的任何方法。 我需要一些示例代码和实现方法。 现在我只是设置 readstream 和 writestream 的属性,如下所示

[readStream setProperty:NSStreamSocketSecurityLevelKey forKey:NSStreamSocketSecurityLevelSSLv3];

[writeStream setProperty:NSStreamSocketSecurityLevelKey forKey:NSStreamSocketSecurityLevelSSLv3];

是否有人提供一些示例链接或示例代码,以便使用 tcp 和 sslv3 建立安全连接问候


穆罕默德·萨迪克。

enter code hereIs der any way to estabilish a secure connection with the server using tcp with sslv3. I need some sample code and the way to implement. now I am just setting the readstream and writestream's property as follows

[readStream setProperty:NSStreamSocketSecurityLevelKey forKey:NSStreamSocketSecurityLevelSSLv3];

[writeStream setProperty:NSStreamSocketSecurityLevelKey forKey:NSStreamSocketSecurityLevelSSLv3];

do any one provide some sample link or sample code in order to estabilish a secure connection using tcp with sslv3

Regards,
Mohammed Sadiq.

梦行七里 2024-07-31 06:58:11

在 iOS 中,您不需要使用任何特殊的东西即可通过 HTTPS 协议获取信息。

  1. 如果需要显示 HTML 信息,请使用 UIWebView
  2. 如果您只需要 POST 或 GET某些东西,使用 NSURL 与 NSData,NSString 或其他东西结合使用来检索包含在它。

You don't need to use anything special in order to GET information through HTTPS protocol in iOS.

  1. If you need to display HTML information, use UIWebView
  2. If you just need to POST or GET something, use NSURL in combination with NSData, NSString or something to retrieve the information contained in it.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文