2014-02-11 58 views
0

我已經嘗試過各種紅寶石代碼來提取推文,我來知道,爲了得到推文,我必須創建一個Twitter應用程序並使用Oauth獲取消費者密鑰。我的問題是,我可以不使用Oauth訪問公共推文,因爲我正在開發一個項目,我必須分析推文。 ,我試圖紅寶石代碼如下提取推文沒有oauth

require 'tweetstream' 
require 'rubygems' 
TweetStream.configure do |config| 
config.username = 'twitterusername' 
config.password = 'twitterpassword' 
config.auth_method = :basic 
end 
@client = TweetStream::Client.new 
@client.sample do |status| 
puts "#{status.text}" 
end 

我得到無法重新連接到Twitter的錯誤。

回答

0

有沒有訪問Twitter的API與出奧亞特。您需要創建一個twitter應用程序才能從API請求這些信息。

您可以從這裏開始閱讀:Authentication & Authorization