-
-
Notifications
You must be signed in to change notification settings - Fork 227
/
delete_all_friend.php
51 lines (51 loc) · 1.33 KB
/
delete_all_friend.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
<?php
ini_set('max_execution_time', 0);
//token của bạn
$token = "EAAA...";
//điền id những bạn không muốn xóa
$array_avoid = ["100001518861027","123","456","789"];
$url = "https://graph.facebook.com/me/friends?limit=5000&fields=id&access_token=$token";
$array_id = array();
while(true){
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_TIMEOUT => 0,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_SSL_VERIFYHOST => false
));
$response = curl_exec($curl);
curl_close($curl);
$response = json_decode($response,JSON_UNESCAPED_UNICODE);
if(isset($response["data"]) && count($response["data"])>0){
$array_fb = $response["data"];
}
else{
break;
}
foreach ($array_fb as $each) {
array_push($array_id,$each['id']);
}
if(!empty($response['paging']['next'])){
$url = $response['paging']['next'];
}
else{
break;
}
}
$array_id = array_diff($array_id,$array_avoid);
foreach ($array_id as $uid) {
$url = "https://graph.facebook.com/me/friends?uid=$uid&method=delete&access_token=$token";
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => false,
CURLOPT_TIMEOUT => 0,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_SSL_VERIFYHOST => false
));
curl_exec($curl);
curl_close($curl);
sleep(3);
}