Wrangling with the Facebook Graph API - Tuts+ Code Tutorial
$fql = 'SELECT name from user where uid = ' . $fb_uid; $ret_obj = $facebook->api(array( 'method' => 'fql.query', 'query' => $fql, )); ... Have you used the Facebook Graph API in a previous project, or are you planning to use it now? Tell me all about it i...