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've been working on facebook application. But I've faced with strange bug(?).

It I'm trying to get detailed info about any event using graph api start_date differs from the one if I'm trying to get it using fql. for example:

  1. https://graph.facebook.com/209798352393506/ - start date is 2011-05-26T19:00:00

  2. https://api.facebook.com/method/fql.query?query=select%20eid%2C%20name%2C%20tagline%2C%20pic%2C%20host%20%2C%20start_time%20from%20event%20where%20eid%20%3D209798352393506 - start time is 1306461600. Which in human readable format equals to Fri, 27 May 2011 02:00:00 GMT.

As you can see difference between got dates is 5 hours. Somtimes I'm getting dates which differ for 8 hours, sometimes - 6.

Correct date is the first one: http://www.facebook.com/events/209798352393506/

I can't figure out what happens. All events I'm trying to view are from Denmark. My timezone is Europe/Kiev. Difference is 1 hour.

Is this a facebook's bug? Or documented feature? Or am I doing something wrong?

Link to the documentation or another answer in stackoverflow would be enough.

Thanks in advance.

UPD: Did I say something wrong? Or am I not clear what problem I have? Or is it difficult to understand what I mean beacuse of my bad English? Or nobody knows what happens and how to help me? Should I add bounty to my request?

UPD2: Something unbelievable happens. I believe I'm missing something but I can't find what exactly. OK.

Here is two events

http://www.facebook.com/events/290600150977115/ - starts on 2012-03-22 at 20:00

http://www.facebook.com/events/289501924395338/ - starts on 2012-03-03 at 21:00

But. Using FQL I'm getting that first event starts on 2012-03-23 at 04:00. Difference is 8 hours. And the second one starts on 2012-03-04 at 06:00. In this case difference is 9 hours. Why???

Any help will be appreciated.

Thanks in advance.

UPD3: I'll add 50 point of reputation as a bounty once it is possible.

UPD4: Problem is solved

UPD5: In case somebody has the same problem.

It was because of daylight saving time.

Time difference between me and facebook(Los Angeles) sometimes was 8 sometimes 9 hours, because there was a moment when Denmakr alredy changed their time to summer time and los angeles - not.

The problem occured when event started "in winter time" and finished in summer time. In this case I needed to add one hour.

I hope it's clear:)

share|improve this question
maybe difference is because of timezone, may first command is getting time in your timezone & second one in GMT – Pooya Estakhri Feb 27 '12 at 18:41
Thanks for your comment but no. Differnce between my timezone and timezone of event creator is 1 hour. My timezone is GMT+2, events - GMT+1. – Ruslan Polutsygan Feb 27 '12 at 18:45
How was this issue Resolved if you don't mind me asking? – Nick Goodyear Sep 18 '12 at 3:12
@Nick Goodyear: see updated post(UPD5). – Ruslan Polutsygan Sep 21 '12 at 10:24

1 Answer

up vote 2 down vote accepted

Facebook is weird.

From /fql/insights/

The end of the period during which the metrics were collected, expressed as a unix time (which should always be midnight, Pacific Daylight Time) or using the function end_time_date() which takes a date string in 'YYYY-MM-DD' format.

2011-05-26T19:00:00 ===> 2011-05-26T19:00:00 PDT ===> Fri, 27 May 2011 02:00:00 GMT.

share|improve this answer
Thanks a lot! I'll check tomorrow, but looks like you are right. – Ruslan Polutsygan Feb 27 '12 at 22:57
Hi. Could you please look at the updated post? Thank you for your help. – Ruslan Polutsygan Feb 28 '12 at 12:22

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.