iPhone 中的 HTTPS 连接
如何从 iPhone 应用程序连接到 https url? 有可用的示例代码吗?
How to connect to https url from iphone application ?
Is there any sample code available?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
与连接到 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.
在此处输入代码是使用 tcp 和 sslv3 与服务器建立安全连接的任何方法。 我需要一些示例代码和实现方法。 现在我只是设置 readstream 和 writestream 的属性,如下所示
是否有人提供一些示例链接或示例代码,以便使用 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
do any one provide some sample link or sample code in order to estabilish a secure connection using tcp with sslv3
Regards,
Mohammed Sadiq.
在 iOS 中,您不需要使用任何特殊的东西即可通过 HTTPS 协议获取信息。
You don't need to use anything special in order to GET information through HTTPS protocol in iOS.