0
我使用iPhone應用程序從不同渠道獲取事件並在地圖上顯示它們。 現在我嘗試抓住我的數據庫中的Facebook事件。 我提出這個請求如何使用Graph API從所有註冊用戶獲取所有事件?
SELECT name, venue, location, start_time, update_time FROM event WHERE update_time>1358294400
但它不起作用。 Facebook返回
{
"error": {
"message": "Error validating access token: Session has expired at unix time 1358528400. The current unix time is 1358761880.",
"type": "OAuthException",
"code": 190,
"error_subcode": 463
}
}
我如何通過update_time
獲得活動?
在此先感謝。
我怎麼能簡單地讓所有的數據手動篩選? –
取決於你的要求。你可以使用這個 - 'SELECT name,venue,location,start_time,update_time FROM event WHERE eid in(select event from member where uid = $ id)' –
但是我需要所有用戶的所有事件。 –