我試圖將R與Twitter綁定,我嘗試的所有內容都失敗了。我一直在看的幾個環節,包括以下內容:One,Two,ThreeR devtools :: install_github()下載錯誤:未授權
雖然這些都導致更多的問題,我現在在看的鏈接here和here嘗試一些變通辦法。我會發布我的問題作爲對這些鏈接的評論,但我還沒有足夠的代表。
當我運行下面的代碼,我收到以下錯誤
代碼:
library(base64enc)
library(RCurl)
library(httr)
set_config(config(ssl_verifypeer = 0L))
devtools::install_github("jrowen/twitteR", user="MY_USERNAME", password="MY_PASSWORD", ref = "oauth_httr_1_0")
錯誤:
WARNING: Rtools is required to build R packages, but is not currently installed.
Please download and install Rtools 3.3 from http://cran.r-project.org/bin/windows/Rtools/ and then run find_rtools().
Downloading GitHub repo jrowen/[email protected]_httr_1_0
Error in download(dest, src, auth) : client error: (401) Unauthorized
我只是完全失去了一些東西在這裏如何下載這個dev twitteR軟件包?有沒有人有關於如何克服401錯誤的想法?
感謝,
你安裝了Rtools嗎? –
因爲我沒有構建軟件包,所以沒想到這是需要的。我會嘗試它。 – JRW
即使在安裝Rtools並重新啓動R之後,我也會得到相同的錯誤。如下所述,當我離開'set_config(config(ssl_verifypeer = 0L))'時,出現錯誤:下載GitHub repo jrowen/twitteR @ oauth_httr_1_0 curl :: curl_fetch_memory(url,handle = handle)時出錯: 對等證書無法通過給定的CA證書進行認證。# – JRW