码迷,mamicode.com
首页 > 移动开发 > 详细

App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file

时间:2016-02-16 18:37:04      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

  ios进行http请求,会出现这个问题:

App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app‘s Info.plist file

解决办法:在工程文件*.plist中进行配置,截图如下:

技术分享

 

 

用记事本打开工程文件,为:

<key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
    </dict>

 

经查,原因是iOS9引入了新特性App Transport Security (ATS)。详情:App Transport Security (ATS)

新特性要求App内访问的网络必须使用HTTPS协议,所以若能使用https尽量使用https。

参考文档:https://segmentfault.com/a/1190000002933776

 

原文链接:http://www.cnblogs.com/tandaxia/p/5193081.html

App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file

标签:

原文地址:http://www.cnblogs.com/tandaxia/p/5193081.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!