回答:
https://developers.facebook.com/tools/explorer/よく尋ねられるがあまり知られていないトリック(そしてfacebookのAPIのおかげで、自動的に考えるよりもはるかに多くのことができる)で、スパマーのコメントをステータスから削除し、リンクに移動します上記でFQLを選択し、アクセストークンを取得し、次のクエリを実行してユーザーのIDを取得します。
SELECT fromid, text from comment where object_id in (select status_id from status where uid=me())
次に使用します:
SELECT id from comment where object_id in (select status_id from status where uid=me() limit 0,100) and fromid=[id of user to delete comments]
または
SELECT id from comment where object_id in (select link_id from link where owner=me() limit 0,100) and fromid=[id of user to delete comments]
次に、ブラウザー(通常はF12)でデバッガーコンソールを開き、次のJavaScriptに入力して貼り付けます。
var acc=""; //put access token in here
var dat=""; //put data returned in here
for (var obj in dat.data) { var xhr = new XMLHttpRequest(); xhr.open("GET", "https://graph.facebook.com/v2.0/" + dat.data[obj].id + "?access_token=" + acc + "&format=json&method=delete&pretty=0&suppress_http_code=1"); xhr.send(); xhr.responseText; }
管理者は、直接の禁止に関係なく、投稿とメンバーにアクセスできます。
あなたは彼/彼女の名前をグループ「右上」の検索に入れ、履歴を取得し、管理者権限で投稿を削除することができます。しかし、あなたはそれを1つずつ(Facebookのポリシー)行う必要があるか、Facebookが何らかのアクションを実行するまで待機する必要があります。