I am posting to a user's Facebook Timeline from my app, and am having some trouble with dates. The user is initiating the post to Facebook from my app. The object they are posting is an event that occurred in the last few days.
This is the post request:
RestClient.post "https://graph.facebook.com/me/app:action", :access_token=>access_token_here, :object=>object_url, :tags => some_tags, :start_time =>"2011-11-08T04:00:00Z", :end_time => "2011-11-08T05:00:00Z"
After I do this for my own Facebook account, the event appears, in the Facebook activity log, in the current date, not the date specified by the start_time.
I have also tried using epoch time, but there's no difference:
RestClient.post "https://graph.facebook.com/me/app:action", :access_token=>access_token_here, :object=>object_url, :tags => some_tags, :start_time =>"1320724800", :end_time => "1320728400"
What am I doing wrong?