Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

1 Answer

up vote 1 down vote accepted

I guess you can not. Since-

The WHERE clause must contain an indexable column. Such columns are marked with * in the tables.

and updated_time is not an indexable column. Only eid and name are indexable in the table event.

So, simply get all the data and then filter manually according to the updated_time

share|improve this answer
How can i simply get all the data? – Sasha Fencyk Jan 21 at 13:00
Depends on what's your requirement. You may use this- SELECT name, venue, location, start_time, update_time FROM event WHERE eid in (select eid from event_member where uid = $id) – Shadowfax Jan 21 at 13:11
But i need all event from all user. – Sasha Fencyk Jan 21 at 13:13
I thought you will give it a try by yourself :P. Well, you may try something like this: SELECT eid,name,pic,start_time,end_time,location,venue.id,privacy,all_members_count,cre‌​ator,description,attending_count,can_invite_friends FROM event WHERE eid IN (SELECT eid FROM event_member WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 =me()) AND start_time >= now() ) and privacy='OPEN' and venue.id<>'' AND start_time >=now() ORDER BY start_time ASC limit 5000 – Shadowfax Jan 21 at 13:19
You should start figuring out the problem after the hints. :) Well, this query is working perfectly fine for me. Check if you have the friends_event permission or not. And if I had helped you out , you can mark this as answer. – Shadowfax Jan 21 at 17:16
show 8 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.