我試圖使用twitteR函數'searchTwitter'來檢索關鍵字「nba」或hashtag「#nba」的~3000條推文,但它只返回299條「nba」以及2013年1月1日至2014年2月25日期間「#nba」的398條推文。我很困惑,這是正常的嗎?有誰使用twitteR遇到過類似的問題?請幫忙。非常感激!TwitteR:'searchTwitter'只返回一小部分推文
library(twitteR)
library(plyr)
library(stringr)
load("~/twitter_authentication.Rdata")
registerTwitterOAuth(cred)
nbahash_tweets = searchTwitter("#nba",since='2013-01-01', until='2014-02-25',n=3000)
nba_tweets = searchTwitter("nba",since='2013-01-01', until='2014-02-25',n=3000)
Warning message:
In doRppAPICall("search/tweets", n, params = params, retryOnRateLimit = retryOnRateLimit, :
3000 tweets were requested but the API can only return 398
然後
Warning message:
In doRppAPICall("search/tweets", n, params = params, retryOnRateLimit = retryOnRateLimit, :
3000 tweets were requested but the API can only return 299
我還沒有使用'twitteR',但要確保搜索查詢不區分大小寫。 – tonytonov
謝謝。我檢查了查詢不區分大小寫。 – Blue482