Skip to content

Instantly share code, notes, and snippets.

@lfcipriani
Created March 6, 2014 20:17
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lfcipriani/9398698 to your computer and use it in GitHub Desktop.
Save lfcipriani/9398698 to your computer and use it in GitHub Desktop.
Minimal Twitter Bot in Ruby 2.x
# This bot reply "Yes", "No" or "Maybe" for tweets with questions
# Just config this script with your OAuth keys and execute it (for tokens check apps.twitter.com)
# Also make sure to install these gems
require "rubygems"
require "tweetstream"
require "em-http-request"
require "simple_oauth"
require "json"
require "uri"
$stdout.sync = true
# config oauth
OAUTH = {
:consumer_key => "EDIT_HERE",
:consumer_secret => "EDIT_HERE",
:token => "EDIT_HERE",
:token_secret => "EDIT_HERE"
}
ACCOUNT_ID = OAUTH[:token].split("-").first.to_i
TweetStream.configure do |config|
config.consumer_key = OAUTH[:consumer_key]
config.consumer_secret = OAUTH[:consumer_secret]
config.oauth_token = OAUTH[:token]
config.oauth_token_secret = OAUTH[:token_secret]
config.auth_method = :oauth
end
@client = TweetStream::Client.new
@client.on_error do |message|
puts "[STREAM_ERROR] #{message}"
end
@client.on_enhance_your_calm do
puts "[CALM_DOWN]"
end
@client.on_limit do |skip_count|
puts "[STREAM_LIMIT] You lost #{skip_count} tweets"
end
@client.on_friends do |friends|
puts "[FRIENDS] You have #{friends.size} friends. Now tracking..."
end
puts "[STARTING] bot..."
@client.userstream() do |status|
if !status.retweet? && # isn't retweet
status.in_reply_to_user_id? && status.in_reply_to_user_id == ACCOUNT_ID && # is replying to your user
status.text[-1] == "?" # is a question
tweet = {
"status" => "@#{status.user.screen_name} " + %w(Yes No Maybe).sample,
"in_reply_to_status_id" => status.id.to_s
}
# posting reply to Twitter
twurl = URI.parse("https://api.twitter.com/1.1/statuses/update.json")
authorization = SimpleOAuth::Header.new(:post, twurl.to_s, tweet, OAUTH)
http = EventMachine::HttpRequest.new(twurl.to_s).post({
:head => {"Authorization" => authorization},
:body => tweet
})
http.errback {
puts "[CONN_ERROR] errback"
}
http.callback {
if http.response_header.status.to_i == 200
puts "[HTTP_OK] #{http.response_header.status}"
else
puts "[HTTP_ERROR] #{http.response_header.status}"
end
}
end
end
@renilsonpaiva
Copy link

É possível hospedar no Google Drive?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment