WWDC 15 提出的 ATS (App Transport Security)
是 Apple 在推进网络通讯安全的一个重要方式。在 iOS 9 和 OS X 10.11 中,默认情况下非 HTTPS 的网络访问是被禁止的。
作为参考,这里将有效的 NSAppTransportSecurity
字典结构
1 | NSAppTransportSecurity : Dictionary { |
ATS设定的参照表格
如果网站内没有启用https,如何关闭,在info.plist
文件中加入
source code下1
2
3
4
5<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
plist下
添加NSAppTransportSecurity
字典->并添加键值对NSAllowsArbitraryLoads
=YES
来禁用ATS
参照链接
https://onevcat.com/2016/06/ios-10-ats/
https://stackoverflow.com/questions/31254725/transport-security-has-blocked-a-cleartext-http