在尝试实现 phonegap facebook 插件的每个版本大约 2 天后,我决定放弃它并在我的应用程序中实现纯 JS 登录系统。老实说,原生登录系统不值得处理这个插件......
我按照 facebook 开发者网站上的说明进行操作,我的登录在桌面浏览器上运行良好。在我用 phonegap 编译它并尝试在 android 设备上运行它之后,问题就开始了。当我按下登录按钮时,我得到一个“FB 未定义在...”,这是由于尝试访问 FB.login() 方法所致。
相关代码是:
window.fbAsyncInit = function() {
FB.init({
appId : 'XXXXXXXXXX', // contains my App ID
channelUrl : 'YYYYYYYYYYYY', // contains my Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
FB.Event.subscribe('auth.authResponseChange', function(response) {
// Here we specify what we do with the response anytime this event occurs.
if (response.status === 'connected') {
testAPI();
active_access_token = response.authResponse.accessToken;
$.mobile.changePage("#main_page");
} else if (response.status === 'not_authorized') {
FB.login();
} else {
FB.login();
}
});
};
// Load the SDK asynchronously
(function(d){
console.log ("async load started!");
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
function testAPI() {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.name + '.');
});
}
按键接线:
function set_buttons() {
$("#facebook_login_button").click(function(){
console.log("login attempt");
FB.login();
});
同样,这在浏览器中完美运行。phonegap 编译后,我无法让它在 android 上运行。
想法?