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'm having an issue when I create events from my app, basically if I don't set the "end_time" parameter for the created event, Facebook creates an event that ends 3 hours after the start time.

I'm using this code:

var arguments = new Dictionary<string, object>();
arguments.Add("name", "My Activity");
arguments.Add("start_time", "2012/08/15 10:00");
var client = new FacebookWebClient(fbAccessToken);
client.Post("/me/events/", arguments);

And the event shows up correctly, the only problem is that the time says:

10:00am until 1:00pm

I have tried setting the end_time parameter to an empty string and null, but in both cases it fails saying that the end time cannot be before the start time.

Any ideas?

Thanks

share|improve this question
when do you want the event to end? – Douglas Purdy Jul 30 '12 at 0:30
I just want to have an open end date. When you manually create an event you don't have to specify an end date/time, it shouldn't be mandatory for events created with the api either. – willvv Jul 30 '12 at 17:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.