The certificate for this server is invalID. You might be connecting to a serverthat is pretending to be "server addres goes here" which Could put yourconfIDential information at risk."
我使用这种方法:
[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
如何解决这个问题?
我试过这个代码:
NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
但是我在dIDReceiveResponse方法中获得EXC_BAD_ACCESS。
解决方法 如果您没有发送任何敏感信息,您可以简单地忽略无效的证书。 This article描述如何做到这一点。以下是 Alexandre Colucci中针对该文章描述的方法之一的示例实现。基本上你想要在@implementation之上定义一个虚拟接口:
@interface NSURLRequest (DummyInterface)+ (BOol)allowsAnyhttpSCertificateForHost:(Nsstring*)host;+ (voID)setAllowsAnyhttpSCertificate:(BOol)allow forHost:(Nsstring*)host;@end
在调用sendSynchronousRequest之前,调用在虚拟接口中定义的私有方法:
[NSURLRequest setAllowsAnyhttpSCertificate:YES forHost:[URL host]];总结
以上是内存溢出为你收集整理的可可触摸 – 使用NSURLConnection忽略证书错误全部内容,希望文章能够帮你解决可可触摸 – 使用NSURLConnection忽略证书错误所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)