如何实施ssl& https
我对这一开发很陌生,任何人都可以帮助我了解什么是 ssl 以及如何实施 ssl 和 SSL 吗? https 调用
Im new to this development,can any one can help me in know what is ssl and How to implement the ssl & https call
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于 SSL,请检查维基百科网站:http://en.wikipedia.org/wiki/Secure_Sockets_Layer 和对于你的问题:
你可以使用普通的 NSURLConnection API 从 iOS 访问 SSL 页面。它确实与任何其他 URL 连接一样简单 - 但只需确保服务器上的证书是公共证书 - 否则您可能会遇到问题。
For SSL check the wikipedia site: http://en.wikipedia.org/wiki/Secure_Sockets_Layer and for your question:
You can use the normal NSURLConnection API to access SSL pages from iOS. It's really as simple as any other URL connections - but just make sure that the certificate on the server is a public certificate - otherwise you might run into problems.
您无需在 iPhone 上执行任何操作。如果您正在访问任何服务器,那么该服务器应该有一个 ssl 证书来实现安全连接。
在 iphone/ipad 上,您只需使用 NSURLConnection api 和 https url 连接服务器。
You do not have to do anything on iphone. If your are accessing any server, then that server should have a ssl certificate to implement secure connection.
On iphone/ipad you just need to hit the server using NSURLConnection api and https url.
如果您成功连接到 https://,则意味着您获得了安全连接。您应该研究 NSURLAuthenticationChallenge 的文档 以了解如何管理 https 的证书。
If you manage to connect to the https:// it means that you obtain a secure connection. You should study documentation for NSURLAuthenticationChallenge in order to understand how to manage the certificates of the https.