次のコードを書きましたが、何らかの理由でFB.apiが機能しません。JavaScriptコンソールにログメッセージがないため、そう言えます。私はすでにユーザーを認証しており、publish_stream パーミッションを取得しています。以下のコードは FB.login ブロックの内部にあります(これが問題にならないことを願っています) 。
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);
}
});
ヘルプや提案はありますか?