進來買了蘋果的證書,發現各種問題。
xcode6 無法在我的iphone6s上進行測試。只好升級到7
Xcode 7中http通信出現如下錯誤:Application 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.
字數104 閱讀35 評論0 喜歡0
原因
在iOS9 beta1中,蘋果將原http協議改成了https協議,使用 TLS1.2 SSL加密請求數據。
解決方法
編輯 info.plist,加入如下設置:
<plist>
<dict>
....
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
</dict>
</plist>
在info.plist中查看如下所示: