我剛開始使用FQL,並且嘗試了一些運行良好的FB示例。獲取用戶的事件列表
但我儘量讓自己exapmles,但沒有奏效...
我一直想把你的loged用戶的活動清單,這個FQL代碼:
$f = new Facebook($configure); //configure is already ok
$user_id = $f->getUser();
if($user_id){
$ret = $f->api(array('method' => 'fql.query',
'query' => 'select eid, uid, rsvp_status
from event_member
where uid = '.$user_id.';'));
//I splitted the query here because is too long.
//In my PHP code is all in one line
print_r($ret);
}
但它返回一個空數組。
我嘗試它與我的FB的個人資料,甚至我接受了一些進入的事件,但我仍然得到一個空列表...
我在做什麼錯?
謝謝!
可能重複的[查詢事件\由UID _member表](http://facebook.stackoverflow.com/questions/8361715/query-event-member-table-by-uid) – Igy