https://developers.facebook.com/tools/explorer/ Những câu hỏi thường được hỏi nhưng ít được biết đến (và nhờ API của facebook, bạn có thể tự động làm nhiều hơn bạn nghĩ) để xóa bình luận của người gửi thư rác khỏi trạng thái của bạn, hãy truy cập liên kết ở trên và chọn FQL, nhận mã thông báo truy cập và chạy truy vấn sau để lấy ID của người dùng:
SELECT fromid, text from comment where object_id in (select status_id from status where uid=me())
Sau đó sử dụng:
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]
hoặc là
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]
Sau đó mở bảng điều khiển trình gỡ lỗi của bạn trong trình duyệt (thường là F12), sau đó điền và dán javascript sau:
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; }