我的方法是否正确?我收到了这些错误:
Cordova variable does not exist. Check that you have included cordova.js correctly
CDV variable does not exist. Check that you have included cdv-plugin-fb-connect.js correctly
FB variable does not exist. Check that you have included the Facebook JS SDK file.
我设置了自己的Facebook应用。我已经使用Connect签署了几年,现在通过php sdk。对于Phonegap Build(非手动),我是否也应该从Facebook下载javascript sdk,或者我只是按照以下步骤操作?
将此添加到我的 config.xml :
<gap:plugin name="com.phonegap.plugins.facebookconnect">
<param name="APP_ID" value="blah_app_id" />
<param name="APP_NAME" value="blah_app_name" />
</gap:plugin>
并下载
cdv-plugin-fb-connect.js
facebook-js-sdk.js
并将它们放在我的项目的根目录中 - 与我的index.html相同的地方
从https://github.com/phonegap-build/FacebookConnect/tree/master/example/Simple处的示例复制index.html的body标签之间的代码,并将其放入我的Phonegap Build的index.html中,以便进行测试。
压缩并正常上传到PGB
我错过了什么步骤或搞砸了?
谢谢你看看。