-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
34 lines (28 loc) · 969 Bytes
/
index.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
<?php
/**
* Developer: ONUR KAYA
* Contact: [email protected]
*/
define('DIR', DIRECTORY_SEPARATOR);
define('ROOT', $_SERVER['DOCUMENT_ROOT'].DIR);
define('FACEBOOK_PAGE_ID', 'Facebook sayfa id bilgisi');
define('FACEBOOK_PAGE_ACCESS_TOKEN', 'Sayfaya ait "leads_retrieval" ve "ads_read" yetkileri olan bir token');
require_once ROOT.'vendor'.DIR.'autoload.php';
require_once ROOT.'Facebook.php';
$facebook = new Facebook();
/**
* Sayfaya ait formları çekmek için;
* Varsayılan olarak json format döner. Eğer nesne olarak dönmesini istiyorsanız: getForms('object') diyebilirsiniz.
*/
/*$forms = $facebook->getForms();
echo '<pre>';
print_r($forms);
echo '</pre>';*/
/**
* Bir forma ait başvuruları çekmek için;
* Varsayılan olarak json format döner. Eğer nesne olarak dönmesini istiyorsanız: getLeads('form_id', 'object') diyebilirsiniz.
*/
$leads = $facebook->getLeads('form id bilgisi');
echo '<pre>';
print_r($leads);
echo '</pre>';