Reputation: 1018
I am trying to login on my iOS
App via Facebook using 6.4 SDK version
, and I am constantly getting this error although I have done almost everything the Facebook developers page and SO here, recommends! Please help.
I get this message:
Error
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.
Here attached is a snapshot of my Info.Plist
Thank you in advance.
Upvotes: 0
Views: 889
Reputation: 471
Open your info.plist file of your project with any editor of your preference, then add this code at the end of the file before the last
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
Upvotes: 0