您好我正在使用phoneGap。我想使用phonegap在我的应用程序中集成facebook。我正在按照教程:
https://github.com/davejohnson/phonegap-plugin-facebook-connect/
在本教程(自述文件)中,它表示在[projectName] info.plist中包含Facebook ID和Scheme ID。 BUt给定的数据是:
<key>FacebookAppID</key>
<string>[**APP_ID**]</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleURLSchemes</key>
<array>
<string>fb[**APP_ID**]</string>
</array>
</dict>
</array>
在这里,我有点困惑,我必须把我的FaceBook ID放在哪里以及放置Scheme ID? 请帮助我。提前谢谢。
答案 0 :(得分:1)
我找到了一篇博客文章 - Facebook plugin integration for PhoneGap 2.1 for iOS and Android,其中的内容与
相似<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>
来自同一篇博文:
SCHEME_ID和APP_ID SCHEME_ID是反向的无与伦比的标识符 域名顺序(即com.oodles.cordova.myscheme),APP_ID是应用程序ID 这是您在Facebook注册应用程序后获得的。