Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save INDIAN2020/0c1c4c56f9cf520eef07 to your computer and use it in GitHub Desktop.
Save INDIAN2020/0c1c4c56f9cf520eef07 to your computer and use it in GitHub Desktop.
<?php
$facebook = new Facebook(array(
'appId' => 'YOUR_API_KEY',
'secret' => 'YOUR_API_SECRET',
'cookie' => true,
));
$fql = "SELECT page_id, name from page where name='Coke'";
$response = $facebook->api(array(
'method' => 'fql.query',
'query' =>$fql,
));
print_r($response);
?>
<?php
$param = array(
'method' => 'fql.query',
'access_token' => $cookie['access_token'],
'query' => $fql,
'callback' => ''
);
$response = $facebook->api($param);
print_r($response);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment