我们可以使用“https”吗?在 iOS 中获取数据的链接?
iam 目前使用 NSURLConnection 类来访问我的服务器并从中获取一些数据。服务器链接将类似于 http://sample.com/sample/sampleinformation。但是,正如我们所知,使用简单的“http”并不是很安全,并且容易受到攻击。有没有一种方法可以让我使用“https”链接而不是“http”???
iam currently using NSURLConnection class to hit my server and get some data from it. The server link will be something like this http://sample.com/sample/sampleinformation. But, as we know use of simple "http" is not very secure and is vulnerable to attacks. Is there a way in which i can use "https" links instead of "http"????
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将 NSURLConnection 中使用的 NSURL 更改为 "https://"开头而不是“http://”。这应该足以向服务器发出您想要加密传输的信号。
这会给您的请求增加一些开销,因此除非有必要,否则不要使用它。
Simply change the NSURL used in your NSURLConnection to have "https://" at the beginning instead of "http://". That should be enough to signal to the server that you want to encrypt the transmission.
This adds a bit of overhead to your request so don't use it unless it's necessary.