I'm trying to use the Graph API to get the detailed information of a user - I'm just not sure how to use the api() method to do this.
I have the access token and the user id, so I assumed this would work like so:
$facebook->api($user_id . '?access_token=' . $access_token);
But this only yields my basic information, ie;
http://graph.facebook.com/100000631233901
Instead of:
How do I use the api() method correctly to collect the latter list of information?
Update:
I've tried parsing an array of parameters like so:
$params = array("access_token" => $token);
$stats = $facebook->api($uid, "post", $params);
echo '<pre>';
print_r($stats);
echo '</pre>';
However this gives me the following error:
Fatal error: Uncaught OAuthException: (#100) The parameter password is required thrown in /home/projectavian/phoenix/facebook.php on line 543