我正在尝试从我这里获取 events/not_replied,但我得到的只是一个空数组....
我试过那些:
$facebook->api('/me/events/not_replied','GET');
和
$facebook->api('/me/events/not_replied');
和
$access_token = $facebook->getAccessToken();
$url = 'https://graph.facebook.com/me/events/not_replied?access_token='.$access_token;
$string = file_get_contents($url);
$json_a=json_decode($string,true);
等等...
没有工作。任何的想法?