美文网首页
NSURLConnection/CFURLConnection

NSURLConnection/CFURLConnection

作者: H_A_N | 来源:发表于2017-09-14 10:02 被阅读0次

出现的错误:
NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9843)

用AFNetworking 请求自签名的SSL ,出现错误:NSURLConnection/CFURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9843) ,是自签名的HTTPs请求的API,不是加载的UIWebview

解决方式:

我在Info.plist中添加NSAppTransportSecurity类型Dictionary。
在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为YES之后,把请求的URL都可以变成http而不是https了,如果还是https就报这个错。

相关文章

网友评论

      本文标题:NSURLConnection/CFURLConnection

      本文链接:https://www.haomeiwen.com/subject/oeirsxtx.html