1

RStudio の twitteR パッケージを使用しようとしています。
しかし、私はエラーが発生しています:

「プロキシ認証が必要です」および場合によっては「ホストが見つかりません」。

同じ問題を抱えたスレッドがたくさんあります。
すべて試しました ( --internet2,R by setting "~/Rgui.exe" http_proxy=http:/999.99.99.99:8080/ http_proxy_user=ask)。しかし、うまくいきませんでした。

以下のコードを見つけてください (私はオフィスのデスクトップ RStudio から実行しています)。これには認証が必要です: proxyuserpwd="**domain//username:pwd**".

この行についてはよくわかりません。さまざまな組み合わせを試しましたが、どれもうまくいきませんでした。

rm(list=ls())
library(twitteR)
library(ROAuth)
library(RCurl)

options(RCurlOptions = list(
  verbose = TRUE,
  proxy ="http://proxy1.domain.com:8080",
  proxyuserpwd="domain//username:pwd",
  proxyauth="ntlm"))

reqURL <- "http://api.twitter.com/oauth/request_token"
accessURL <- "http://api.twitter.com/oauth/access_token"
authURL <- "http://api.twitter.com/oauth/authorize"
consumerKey <- '.............'
consumerSecret <- '..........'
twitCred <- OAuthFactory$new(consumerKey=consumerKey,
                          consumerSecret=consumerSecret,
                         requestURL=reqURL,
                         accessURL=accessURL,
                         authURL=authURL)

download.file(url="http://curl.haxx.se/ca/cacert.pem",destfile="cacert.pem")
twitCred$handshake(cainfo="cacert.pem")



< Proxy-Authenticate: BASIC realm="Access to this server requires AD Authentication.    Prefix your user ID with domain."
Host: api.twitter.com
Accept: */*
Proxy-Connection: Keep-Alive
Content-Length: 221
Content-Type: application/x-www-form-urlencoded

Error: Proxy Authentication Required
> registerTwitterOAuth(twitCred)
< HTTP/1.1 407 Proxy Authentication Required
* Authentication problem. Ignoring this.
< Proxy-Authenticate: NTLM
< Cache-Control: no-cache
< Pragma: no-cache
< Content-Type: text/html; charset=utf-8
* HTTP/1.1 proxy connection set close!
< Proxy-Connection: close
< Set-Cookie: BCSI-CS-3bf0ea03406bba28=2; Path=/
< Connection: close
< Content-Length: 899
< 
* Closing connection #0
Error in registerTwitterOAuth(twitCred) : 
oauth has not completed its handshake

ただし、以下のコードで試したとき。

library("RCurl")
opts <- list(
proxy         = "proxy1.domain.com", 
proxyusername = "domain", 
proxypassword = "pwd",
proxyport     = 8080
)
getURL("http://stackoverflow.com", .opts = opts)

...私は成功しています。

>sessionInfo()  
R version 2.15.1 (2012-06-22)
Platform: i386-pc-mingw32/i386 (32-bit)

locale:
[1] LC_COLLATE=English_United States.1252  LC_CTYPE=English_United States.1252    LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C                           LC_TIME=English_United States.1252    

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] twitteR_1.1.7  rjson_0.2.13   ROAuth_0.9.3   digest_0.6.3   RCurl_1.95-4.1    bitops_1.0-5  

loaded via a namespace (and not attached):
[1] tools_2.15.1

ここからマルチスレッドソリューションを試しましたが、そのソリューションはどれも機能しませんでした。どこで間違いを犯しているのかわかりません.(私を悩ませているユーザー名と一緒に入れる必要があるのはドメインですか)誰かがこの問題についていくつかの光を当てることができます.

アップデート:

RGui で同じコードを実行したとき ("~/Rgui.exe" http_proxy=http:/999.99.99.99:8080/http_proxy_user=ask を設定)、cacert.pem をダウンロードするためのユーザー名とパスワードの入力を求められました。
しかし、ハンドシェイクしようとすると、同じエラーがスローされます。

エラー: プロキシ認証が必要です。

アップデート:

次のエラーが表示されます。
Error in function (type, msg, asError = TRUE) : Received HTTP code 407 from proxy after CONNECT

更新 トーマスが提案したように - 試した

reqURL <- "https://api.twitter.com/oauth/request_token"
accessURL <- "https://api.twitter.com/oauth/access_token"
authURL <- "http://api.twitter.com/oauth/authorize"
consumerKey <- '-----'
consumerSecret <- '-------'
twitCred <- OAuthFactory$new(consumerKey=consumerKey,
                         consumerSecret=consumerSecret,
                         requestURL=reqURL,
                         accessURL=accessURL,
                         authURL=authURL)

h <- getCurlHandle(
proxy         = "proxy1.domain.com", 
proxyusername = "username",  #but i have to always prefix my domain with username(Domain\username or domain\\username or domain//username)
proxypassword = "password",
proxyport     = 8080,
cainfo = "cacert.pem")
twitCred$handshake(curl=h)

次のエラーが
Error in strsplit(response, "&") : non-character argument
発生しました。トレースバック出力でリンクを更新しています
5: strsplit(response, "&")
4: lapply(X = X, FUN = FUN, ...)
3: sapply(strsplit(response, "&")[[1]], strsplit, "=")
2: parseResponse(resp)
1: twitCred$handshake(curl = h)

4

3 に答える 3

1

プロキシ サーバーについてはまったくわかりませんが、ハンドシェイク ラインでこれを試してみませんか (curl ハンドルを明示的に指定します)。

h <- getCurlHandle(
      proxy         = "proxy1.domain.com", 
      proxyusername = "domain", 
      proxypassword = "pwd",
      proxyport     = 8080,
      cainfo = "cacert.pem")
twitCred$handshake(curl=h)
于 2013-11-29T07:16:38.190 に答える
0

私もプロキシサーバーの背後で作業しており、次のコードを使用して Twitter にアクセスできました。

consumer_key <- '<put your consumer key here>'
consumer_secret <- '<put your consumer secret here>'
access_token <- "<put your access token here>"
access_secret <- "<put your access token secret here>"
set_config(use_proxy(url='proxy- address',port-number, username, password))
setup_twitter_oauth(consumer_key,consumer_secret, access_token , access_secret)

そして、ツイートを取得することができました。この問題を解決するための段階的な手順を記載したブログも書いています。http://analyticsinall.blogspot.in/search/label/Analytics%20for%20Businessからアクセスできます。

于 2015-10-15T17:45:17.820 に答える