I work on iPhone application that grab events from different channel and show them on map. Now i try to grab Facebook events in my DB. I make this request
SELECT name, venue, location, start_time, update_time FROM event WHERE update_time>1358294400
But it doesn't work. Facebook return
{
"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
}
}
How can i get events by update_time ?
Thanks in advance.