私はFacebookでコメントを投稿するにはログインfacebook javascriptのSDKを使用してこのコードを使用しています:削除私のサイトからFacebookのコメントやFacebookのJavascriptのSDK
FB.init({
//appId: 'YOUR_APP_ID', cookie: true,
appId: '2697XXXXXXXXXX098', cookie: true,
status: true, xfbml: true
});
FB.ui({
method: 'feed',
name: 'MyComment',
link: 'http://www.facebook.com./',
picture: 'http://xyz.com/App_Shared/Images/logo.jpg',
caption: 'Comment caption',
description: 'comment description',
message: 'Join facebook.'
}, function (response) {
if (response && response.post_id) {
alert('Post was published.' + response.post_id);
} else {
alert('Post was not published.');
}
});
と今私は、同じタイプのを使用して、この記事を削除したいですjsコード。 私のデータベースにpost_idを保存しました。
あなたは
私はこれが私にエラーを与えます:{"タイプ": "OAuthException"、 "メッセージ": "(#200)ユーザーがこのアクションを実行するアプリケーションを許可していません} } –
@Gauravこれには、publish_stream拡張アクセス許可が必要です – bkaid