I want to write a Ruby application through which:
- I can submit tweets to twitter.
- I can submit a post to facebook.
- I can manage real-time stats of tweets
Is there any twitter/facebook api for Ruby?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Streams of tweets:
Tweetmon is a great gem for keeping real-time track of tweets. Here’s an example of using it to get a stream of tweets on a specific keyword
To use this gem you need:
gem sources -a http://gems.github.com
gem install intridea-tweetstream
To submit a tweet is just a HTTP POST – doesn’t need any extra libraries to do this.