我们可以使用“https”吗?在 iOS 中获取数据的链接?

发布于 2024-11-29 12:07:34 字数 264 浏览 0 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

在你怀里撒娇 2024-12-06 12:07:34

只需将 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.

酷炫老祖宗 2024-12-06 12:07:34
NSURL *jsonURL = [NSURL URLWithString:[NSString stringWithFormat:@"your url here",nil]];


NSURLRequest *request = [NSURLRequest requestWithURL:jsonURL cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:120.0];
NSData *responsedata = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString* jsonData = [[NSString alloc] initWithData:responsedata encoding:NSUTF8StringEncoding];    
NSURL *jsonURL = [NSURL URLWithString:[NSString stringWithFormat:@"your url here",nil]];


NSURLRequest *request = [NSURLRequest requestWithURL:jsonURL cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:120.0];
NSData *responsedata = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString* jsonData = [[NSString alloc] initWithData:responsedata encoding:NSUTF8StringEncoding];    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文