I created an app, so I'm using my appId and secret. I can retrieve an event array for any page that has public events using:
// Lady Gaga example (not a fan!)
$event_array = $facebook->api('/ladygaga/events');
The returned array gives me:
[name]
[start_time]
[end_time]
[timezone]
[location]
[id]
I wish [description] was in there, I'd be done! This is for a community event calendar and I'd like my members to be able to add their facebook events if they choose to. I was hoping they could tell me their facebook username and I could print their events out (easy!).
Here's the question: Do I need to Facebook Login to show descriptions for their events? If so, how would this work?