Skip to content

Instantly share code, notes, and snippets.

@gitbricho
Last active January 11, 2016 04:21
Show Gist options
  • Save gitbricho/6ca727b25edff7090985 to your computer and use it in GitHub Desktop.
Save gitbricho/6ca727b25edff7090985 to your computer and use it in GitHub Desktop.
IOSSample101
...
<plist version="1.0">
<dict>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
...
</dict>
</plist>
...
<plist version="1.0">
<dict>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>localhost</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSTemporaryExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
</dict>
</dict>
...
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment