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 am looking for a way of integrating my Rails3 App to social media - what I want to do is every time there is an article published on my blog-type App by a User, it automatically sends the title of the Article to my FB fan page and Twitter feed. Is this even possible?

share|improve this question

3 Answers

I haven't worked with Facebook, but I have worked with Twitter in a Rails 3 app, check out the Twitter gem at https://github.com/jnunemaker/twitter/

share|improve this answer
I can't see the feature I'm looking for in the Gem docs?? – ubique May 13 '11 at 12:17
It interacts with the Twitter API, for example, there is a line down there in the readme/docs with 'Twitter.update("I'm tweeting from the Twitter Ruby Gem!")' that updates your status when that line is called. Using that, you could integrate that into your model/controller/etc to trigger that update with the title/link to your article whenever say, the 'create' action is triggered. That's how I would personally go about it. – Shannon May 13 '11 at 14:37
As I said, I haven't worked with Facebook personally but you may want to take a look at this: intridea.com/2010/4/22/… – Shannon May 13 '11 at 14:55

It is quite simple without using any additional gems but oauth, for twitter there is simple example at http://joshuaborn.info/blog/dc7a, for facebook I don't have direct links with examples right now, but it is similar, only thing is that FB uses OAuth2 not OAuth and some methods are slightly different, but logic is the same.

share|improve this answer

The equivalent for the twitter gem would be koala https://github.com/arsduo/koala or fb_graph https://github.com/arsduo/koala will take a bit of digging to get what you need done but that should provide the some nice ruby wrappers for your API calls.

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.