I'm currently using the fb_graph gem (https://github.com/nov/fb_graph) to create events through my rails app. I'm at the point where I can create an event on FB through below
me = FbGraph::User.me(ACCESS_TOKEN)
event = me.event!(
:name => 'FbGraph test event',
:start_time => 1.week.from_now,
:end_time => 2.week.from_now
)
But I can't figure out how to invite anybody to the event? I've tried :to => friend.uid but to no avail. Anyone know if this is possible?