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