I'm trying to integrate Facebook Login in my IOS app. The error
-canOpenURL: failed for URL: "fbauth2:///" - error: "(null)"
is suddenly started coming now. My info.plist has following entries
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fbauth2</string>
<string>fbapi</string>
<string>fb-messenger-api</string>
<string>fbshareextension</string>
<string>fbauth</string>
</array>
and
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
It was working fine some time back. I tried to logout and login again but it won't login now.
P.S. I'm trying to login on ios simulator of xcode
Edit : This is happening just in iphone 6 simulator, rest of the simulators are working fine.
NSLog( @"%@", [FBSettings sdkVersion] );
– teamnorge