-2

why this error is showing up ?

canOpenURL: failed for URL: "fbauth2:/" - error: "(null)"

Shikha Sharma
  • 139
  • 1
  • 14

1 Answers1

0

Please add fbauth2 in url schema of info.plist file of your xcode project. Also add

<key>LSApplicationQueriesSchemes</key> <array>
    <string>fbapi</string>
    <string>fbauth</string>
    <string>fbauth2</string> </array>

in your info.plist file. for more information https://developers.facebook.com/docs/ios/ios9

Mahendra Y
  • 1,941
  • 20
  • 26