-
-
Notifications
You must be signed in to change notification settings - Fork 227
/
delete_all_post_FB.php
74 lines (73 loc) · 2.85 KB
/
delete_all_post_FB.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<title>Delete all post</title>
</head>
<body>
<h4>Code xóa toàn bộ bài đăng</h4>
<h5>Không xóa được ảnh bìa, ảnh đại diện, bài được tag</h5>
<form method="post">
<h3><a href="https://fb.com/me" target="_blank">Cách lấy token: Ấn vào đây => Ctrl U => Ctrl F => Tìm EAAA... (copy đoạn EAAA dài nhất)</a></h3>
<input type="text" name="token" placeholder="Nhập token vào đây"><br>
<input type="number" name="id" placeholder="Nhập ID người dùng (hoặc nhóm, hoặc trang) muốn xóa"><br>
Xóa hết<input type="radio" name="all" value="1" checked><br>
Xóa theo thời gian<input type="radio" name="all" value="0"><br>
Bắt đầu từ ngày nào (có thể để trống nếu muốn xóa hết):<input type="date" name="since""><br>
Kết thúc đến ngày nào (có thể để trống nếu muốn xóa hết):<input type="date" name="until""><br>
<button name="ok">OK</button>
</form>
</body>
</html>
<?php
if(isset($_POST['ok'])){
ini_set('max_execution_time', 0);
$token = $_POST['token'];
$id_can_xoa = $_POST['id'];
$option = $_POST['all'];
$limit = 500;
if($option==0){
$since = $_POST['since'];
$until = $_POST['until'];
$link = "https://graph.facebook.com/$id_can_xoa/feed?fields=id&limit=$limit&access_token=$token&since=$since&until=$until";
}
else{
$link = "https://graph.facebook.com/$id_can_xoa/feed?fields=id&limit=$limit&access_token=$token";
}
while (true) {
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => $link,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 0,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_SSL_VERIFYHOST => false
));
$response = curl_exec($curl);
curl_close($curl);
$data = json_decode($response,JSON_UNESCAPED_UNICODE);
$datas = $data["data"];
foreach($datas as $each){
$id_lay = $each["id"];
$link = "https://graph.facebook.com/$id_lay?method=delete&access_token=$token";
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => $link,
CURLOPT_RETURNTRANSFER => false,
CURLOPT_TIMEOUT => 0,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_SSL_VERIFYHOST => false
));
curl_exec($curl);
curl_close($curl);
sleep(rand(2,5));
echo "Đã xóa<br>";
}
if(!empty($data["paging"]["next"])){
$link = $data["paging"]["next"];
}
else{
break;
}
}
}
?>