Using the PHP SDK to run FQL queries using the Facebook Graph API

Using the PHP SDK to run FQL queries using the Facebook Graph API - facebook_fql_queries.php

<?php. $facebook = new Facebook(array(. 'appId' => 'YOUR_API_KEY',. 'secret' = > 'YOUR_API_SECRET',. 'cookie' => true,. )); $fql = "SELECT page_id, name ...

Lee mas