iOS开发之Xcode 7 App Transport Security has blocked a cleartext HTTP 报错问题的解决方案
程序员文章站
2022-07-05 23:42:40
xcode 7 创建新项目用到 uiwebview 发送请求时,报下面的错:
“app transport security has blocked a cleartext http (...
xcode 7 创建新项目用到 uiwebview 发送请求时,报下面的错:
“app transport security has blocked a cleartext http (https://) resource load since it is insecure. temporary exceptions can be configured via your app’s info.plist file”
找查资料后发现,新特性要求app内访问网络请求,要采用 https 协议。
但是现在公司的项目使用的是 http 协议,使用私有方式保证数据安全。现在也不能马上改成 https 协议传输。
最终找到以下解决办法:
1、在info.plist中添加 nsapptransportsecurity 类型 dictionary ;
2、在 nsapptransportsecurity 下添加 nsallowsarbitraryloads 类型boolean ,值设为 yes;
上一篇: 对于微服务的一点思考
下一篇: apply,call和bind的用法区别