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 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?

share|improve this question
1  
FWIW, I've been told that fb_graph has problems and that Koala is a better facebook integration gem. – pschuegr Dec 18 '12 at 2:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.