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 have a complicated problem to solve.

I want to make a website like eventbrite.com.

  1. Organizers can log in to the website and create events.
  2. Users can log into the website and press a button called "I'm attending".

Users login to the website via Facebook, so I have their fb_id, but I don't have an event created in Facebook. Event details are in my local site.

In this care how can I display the attenders list. If I am joining an event I want to see my friends who's going to the event too?

Problem here is I dont have a Facebook event.

How can I implement this?

Thanks a lot.

share|improve this question

closed as not a real question by Igy, cHao, ρяσѕρєя K, Jim Garrison, Graviton Sep 3 '12 at 2:24

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You say this is complicated, but what exactly is complicated for you? Integrating the facebook api? Do you have existing experience with php/mysql or another language and database system?

You create your own event on a database on your site. Then when a user says they are attending you store their facebook_id against your event_id on another table.

You can request the 'friends' permission from facebook users sign-up for your site, then, when they view a particular event, check to see if their friends' facebook_ids are in the list of current attendees for that event

share|improve this answer
Hi Tommy, Thanks for your quick reply. Sorry for not explaining the problem properly. I have rephrased the question here facebook.stackoverflow.com/questions/11999434/… Please take a look. Thanks again! – SañØj BógØda Aug 17 '12 at 3:36
I've left an answer on your other question. But rather then opening a new question could you not have edited this one? This one will remain unanswered now and will potentially confuse someone else – TommyBs Aug 17 '12 at 6:34

Not the answer you're looking for? Browse other questions tagged or ask your own question.