为 WatchKit 配置应用程序传输安全(LaunchServicesError 错误 0。)
Configuring App Transport Security for WatchKit (LaunchServicesError error 0.)
我正在构建一个与 non-HTTPS API 通信的 WatchKit 应用程序,因此我需要配置 App Transport Security 允许例外域。
当我执行 NSURLRequest
时,出现以下错误:
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.
所以我已将此添加到我的 Info.plist:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>domain.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
但是当我尝试在模拟器中 运行 时,我得到一个 Xcode 错误:
关键是您需要将 NSAppTransportSecurity
键添加到您的 Watch Extension 的 Info.plist
文件中,而不是您的 WatchKit 应用或iPhone 应用目标。
我正在构建一个与 non-HTTPS API 通信的 WatchKit 应用程序,因此我需要配置 App Transport Security 允许例外域。
当我执行 NSURLRequest
时,出现以下错误:
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.
所以我已将此添加到我的 Info.plist:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>domain.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
但是当我尝试在模拟器中 运行 时,我得到一个 Xcode 错误:
关键是您需要将 NSAppTransportSecurity
键添加到您的 Watch Extension 的 Info.plist
文件中,而不是您的 WatchKit 应用或iPhone 应用目标。