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 need to setup an event on a Facebook Page. I would like to be able to set a capacity for this event, and once capacity has been met, I would like to close the event. Is there any way to do this?

I know I can do this with a custom solution integrating the GRAPH API but I need this all to live on the Facebook Page. I can't find anything in Facebook to set an event capacity or even fire an event when someone RSVPs so I could manually close the event. Any suggestions would be appreciated.

share|improve this question

1 Answer

up vote 0 down vote accepted

Unfortunately, events are not yet supported as a real time subscription so your best bet is to:

  1. create a cron-job
  2. grant the offline_access,create_event,user_events permissions
  3. Check the attending connection periodically
  4. When it meets a certain number, edit the privacy property to CLOSED
share|improve this answer
Thanks! I hadn't seen the real time subscription services yet. Those look handy for other things at least – Ryan Feb 9 '11 at 2:36

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.