Skip to content

Instantly share code, notes, and snippets.

@dweinstein
Last active September 30, 2015 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dweinstein/1b5b14f4ca0f868ba227 to your computer and use it in GitHub Desktop.
Save dweinstein/1b5b14f4ca0f868ba227 to your computer and use it in GitHub Desktop.
iOS App Transport No More free HTTP

2015-09-29 19:57:14.354 xxxx[3879:33484] 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.

@dweinstein
Copy link
Author

Can be disabled (and rejected from the app store) in Info.plist:

<key>NSAppTransportSecurity</key>
    <dict>
        <key>NSAllowsArbitraryLoads</key>
        <true/>
    </dict>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment