0

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

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);
    }
});

有什么帮助或建议吗?

4

1 回答 1

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);
        }
    });
于 2012-09-04T15:25:27.223 回答