c# - get my facebook friends attending to events -


I want to receive events from Facebook that my friends are going to them. For example

  1. eventId1 (friend1, friend2, friend3)
  2. eventId2 (friend 10, friend 55);

And so on ...

How can I complete this?

Thanks for the replay.

The event gets an event in the same way using FQL. Here's how you can get all the events that are present in your friends:

  Select the event from where in the Eid (in Event_mail, in select email where UID2 (friend) From where UID1 = '$ User_id' '))  

and here:


Comments

Popular posts from this blog

iphone - How do I make a UIPickerView in a UIActionSheet -

java - Is there an object like a "Set" that can contain only unique string values, but also contain a count on the number of occurrences of the string value? -