FB.api的问题

时间:2012-09-04 15:23:06

标签: javascript facebook facebook-graph-api

我编写了以下代码但由于某种原因, FB.api 无效。我可以这么说,因为javascript控制台中没有日志消息。我已经对用户进行了身份验证并获得了publish_stream权限。以下代码位于 FB.login 块内(我希望这不是问题)。我使用过 jQuery 因为我已经知道如何使用它来获取获取请求。

jQuery.ajax( {
    url: access,
    dataType: 'json',
    success: function (resp) { 
    var data_item='This is a successful post plz do not comment this is a test';
    FB.api('me/feed', 'post', {message: data_item}, function(response) {
    if (!response || response.error) {
        console.log('Error occured');
    } else {
        console.log('Post ID: ' + response.id);
    }
});

任何帮助或建议

1 个答案:

答案 0 :(得分:0)

你需要指定访问令牌,我有同样的问题..我只是添加了访问令牌并解决了问题..

看看这里:http://www.friendouh.com/

    jQuery.ajax( {
        url: access,
        dataType: 'json',
        success: function (resp) { 
        var data_item='This is a successful post plz do not comment this is a test';
        FB.api('me/feed', 'post', {message: data_item,access_token: 'your_acess_token'}, function(response) {
        if (!response || response.error) {
            console.log('Error occured');
        } else {
            console.log('Post ID: ' + response.id);
        }
    });