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 looking to get my friends events with the Graph API and PHP?

I'm getting my events using this:

$facebook->api('/me/events');

Is there a similar way?

Also does anyone know of a reference for this?

share|improve this question

1 Answer

You need the friends_events permission in order to get the events of your friends also.

Once your application got this permission then you can the query the same as you did for your events with the graph api...

If your friend's facebook id is 2343423434 then the api call would be, $facebook->api('/2343423434/events');

share|improve this answer
1  
Thanks Vijay, I do have the friends_events permission set, do you know of any way other than looping through their friends list to get friends events? – teamdane Nov 2 '11 at 13:50

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.