1

在尝试实现 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 上运行。

想法?

4

3 回答 3

2

嗯,我想通了...

因为我是从本地主机运行它,所以我添加了“http:”到

js.src = "//connect.facebook.net/en_US/all.js";

所以现在是:

js.src = "http://connect.facebook.net/en_US/all.js";
于 2013-08-20T06:26:33.470 回答
0

尝试转到您的 Facebook 应用 > 设置 > 高级并在“有效 OAuth 重定向 URI”上添加正确的 url

于 2015-02-09T20:19:14.523 回答
0

对我来说,这与在 iOS 部分下的开发人员 Facebook 应用程序设置中添加 BundleID 有关。这可能会帮助我船上的其他人。

于 2017-01-29T19:59:39.053 回答