Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bauloc/afdde6f4bd41b422ab4e to your computer and use it in GitHub Desktop.
Save bauloc/afdde6f4bd41b422ab4e to your computer and use it in GitHub Desktop.
Transport Security has Blocked a cleartext HTTP
For example you can add a specific domain like:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>yourserver.com</key>
<dict>
<!--Include to allow subdomains-->
<key>NSIncludesSubdomains</key>
<true/>
<!--Include to allow HTTP requests-->
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
<!--Include to specify minimum TLS version-->
<key>NSTemporaryExceptionMinimumTLSVersion</key>
<string>TLSv1.1</string>
</dict>
</dict>
</dict>
The lazy option is:
<key>NSAppTransportSecurity</key>
<dict>
<!--Include to allow all connections (DANGER)-->
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment