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.

Whats the best available plugin for add to timeline implementations in rails. I have already implemented fetching friends, I have fb token etc. I used https://github.com/appoxy/mini_fb gem for that.

I want to implement a functionality ie add_to_timeline. Something like pintrest has. Take a look on screenshot.

Whats the best possible Gem/guide for this.

enter image description here

PS: I am not asking for the code, an example is good to have, even guidance for the gem or plugin is even enough :)

share|improve this question
Can you tell us how you did it? – Robin Mar 22 '12 at 18:16
@Robin Hey, I am quite busy today, I will update a full fledged answer in next 48hours for sure. – Mohit Jain Mar 23 '12 at 6:40

2 Answers

This is facebook open graph. You'll have to define actions and objects. Read this: https://developers.facebook.com/docs/opengraph/keyconcepts/

share|improve this answer

https://github.com/nov/fb_graph

app = FbGraph::Application.new(APP_ID)
me = FbGraph::User.me(ACCESS_TOKEN)

# Fetch activities
actions = me.og_actions app.og_action(:custom_action)

# Publish an activity
action = me.og_action!(
app.og_action(:custom_action),
:custom_object => 'http://samples.ogp.me/264755040233381')

https://github.com/nov/fb_graph/wiki/OpenGraph

And as kenny said, you'll have to create your own custom actions and objects on Facebook.

share|improve this answer

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.