我编写了以下代码,但由于某种原因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);
}
});
有什么帮助或建议吗?