$args = array(
'access_token' => 'xxxxxxx'
);
$url = "https://graph.facebook.com/me/friends";
$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_POSTFIELDS, $args);
curl_exec($ch);
curl_close($ch);
这是我的代码让我的朋友低于预期的输出。我将在哪里获得我所有朋友的姓名和 ID。
{
"data": [
{
"name": "xxxx",
"id": "xxxx"
},
{
"name": "xxxx",
"id": "xxxx"
},
但它给错误。
{"error":{"message":"(#100) ","type":"OAuthException","code":100}}