Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 29th, 2012  |  syntax: None  |  size: 0.42 KB  |  hits: 10  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. # encoding: utf-8
  2.  
  3. require 'twitter'
  4.  
  5. Twitter.configure do |config|
  6.     config.consumer_key = ""
  7.     config.consumer_secret = ""
  8.     config.oauth_token = ""
  9.     config.oauth_token_secret = ""
  10. end
  11.  
  12.  
  13. tweets = Twitter.user_timeline("zishin3255", :count => 20)
  14.  
  15. tweets.each do |tweet|
  16.         client = Twitter::Client.new
  17.         client.update(tweet.text)
  18. end
  19.  
  20. # 試されるリテラシ
  21. # 地震が起きたときに動かしましょう