Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I am working in phoneGap. I want to integrate facebook in my app using phonegap. I am following the tutorial :

https://github.com/davejohnson/phonegap-plugin-facebook-connect/

In this tutorial(Read Me) it says that include Facebook ID and Scheme ID in the [projectName]info.plist. BUt the given data is :

   <key>FacebookAppID</key>
   <string>[**APP_ID**]</string>
   <key>CFBundleURLTypes</key>
   <array>
<dict>
    <key>CFBundleURLSchemes</key>
    <array>
        <string>fb[**APP_ID**]</string>
    </array>
</dict>
   </array> 

Here I am a bit confused that where I have to put my FaceBook ID and where to put Scheme ID ?? Kindly help me. Thanks in advance.

share|improve this question

1 Answer

I found a blog post - Facebook plugin integration for PhoneGap 2.1 for iOS and Android which says to do like

<strong><strong>
<key>CFBundleURLTypes</key>
<array>
    <dict>
        <key>CFBundleURLName</key>
        <string>[SCHEME_ID]</string>
        <key>CFBundleURLSchemes</key>
        <array>
            <string>fb[APP_ID]</string>
        </array>
    </dict>
</array>
</strong></strong>

from the same blogpost :

SCHEME_ID and APP_ID SCHEME_ID is a unparalleled identifier in reverse domain order (i.e com.oodles.cordova.myscheme), APP_ID is the app id which you get after registering your app with facebook.

share|improve this answer
Done the exact as mentioned in the ,given link .. BUt getting an error .. – Burhan Mughal Jan 24 at 5:43
couldn't parse contents of '/Users/Burhan/Desktop/ExampleFaceBook/ExampleFaceBook/ExampleFaceBook-Info.plis‌​t': The data couldn’t be read because it has been corrupted. – Burhan Mughal Jan 24 at 5:43
@BurhanMughal that can be issue with your ExampleFaceBook-Info.plis‌​t look into this SO answer stackoverflow.com/a/7098306/1276002 – Mejo Wilson Jan 24 at 6:00
I am giving scheme ID as .. com.facebook.phonegap.myscheme .. is here something got wrong ? – Burhan Mughal Jan 24 at 6:07
because when i remove this it gives another error and not this one .. it gives linker error – Burhan Mughal Jan 24 at 6:07
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.