IOS 9 के लिए
यदि आपको कोई त्रुटि है: 'LSApplicationQueriesSchemes'
भालू के साथ मेरे जवाब के आधार पर , आपको उन पंक्तियों को भी जोड़ना होगा:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fbauth2</string>
</array>
देखें इस ।
आपको अपनी .plist फ़ाइलों के अंत में उन पंक्तियों के साथ समाप्त होना चाहिए :
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fb2R3234544534554</string>
</array>
</dict>
</array>
<key>FacebookAppID</key>
<string>2R3234544534554</string>
<key>FacebookDisplayName</key>
<string>stevejeff</string>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>facebook.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
<key>fbcdn.net</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
<key>akamaihd.net</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
</dict>
</dict>
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fbauth2</string>
</array>
</dict>
</plist>
* यदि आप v4.6.0 या उच्चतर SDK का उपयोग कर रहे हैं, तो आपको केवल जोड़ने की आवश्यकता है: * (धन्यवाद mohsinjj )
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fbapi</string>
<string>fb-messenger-api</string>
<string>fbauth2</string>
<string>fbshareextension</string>
</array>