-
-
Notifications
You must be signed in to change notification settings - Fork 227
/
get_id_page_liked.php
67 lines (35 loc) · 887 Bytes
/
get_id_page_liked.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
<?php
ini_set('max_execution_time', 0);
//token của bạn
$token = "EAAA...";
//id người dùng
$id_person = "123";
$url = "https://graph.facebook.com/$id_person/likes?limit=1000&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){
echo $each['id'].'<br>';
}
if(!empty($response['paging']['next'])){
$url = $response['paging']['next'];
}
else{
break;
}
}