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 know that when i retrieve data from facebook events it comes in PST time, but when i do a query like this

        $imploded_eids = implode( ',', $eids );
        $fql[$id] = "
        SELECT
            eid,
            name,
            description,
            start_time,
            end_time,
            venue,
            location,
            update_time
        FROM
            event
        WHERE
            eid IN ($imploded_eids) AND start_time > $start_time";

do i need to convert actual gmt() time to PST time?Or should i use the timezone of the currently logged on user?

share|improve this question

1 Answer

If you're going to manually populate $start_time, your desired time should be entered as America/Los_Angeles (with daylight savings if applicable) and then be converted to UTC for the query. This is true regardless of the events location.

If you are showing times for something like a webinar to users in multiple time zones, you'll take the converted America/Los_Angeles time and treat this as the event locale's time zone. Then convert to a user's current time zone.

From the changes that have occurred to the events dialog over the past few weeks, it looks like how this works is about to change.

share|improve this answer

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.