facebook连接Phonegap api

时间:2015-04-10 01:48:59

标签: facebook cordova facebook-graph-api

我遇到访问Facebook connect Graph API的问题,我使用过this plugin,登录示例效果很好,分享示例也运行良好。

我在从Facebook API获得响应时遇到问题。

$(document).ready(function() {
    $("#fb_info").click(function() {
        facebookConnectPlugin.api("/me",
            function (response) {
                if (response && !response.error) {
                    alert(response);
                }
            }
        );
    });
});

0 个答案:

没有答案