我正在尝试在 R 中连接到 Twitter 的 Streaming API。我的代码(包括假的消费者密钥和秘密)如下:
library(streamR)
library(ROAuth)
requestURL <- "https://api.twitter.com/oauth/request_token"
accessURL <- "http://api.twitter.com/oauth/access_token"
authURL <- "http://api.twitter.com/oauth/authorize"
consumerKey <- "xxxxxxxyyyyyyyyzzzzzzzz"
consumerSecret <- "xxxxxxxyyyyyyyyzzzzzzzz123123123123123"
my_oauth <- OAuthFactory$new(consumerKey=consumerKey,
consumerSecret=consumerSecret, requestURL=requestURL,
accessURL=accessURL, authURL=authURL)
my_oauth$handshake(cainfo = system.file("CurlSSL", "cacert.pem", package = "RCurl"))
当我输入此代码时,我收到以下消息(尽管我更改了网址):
To enable the connection, please direct your web browser to:
http://api.twitter.com/oauth/authorize?oauth_token=xxxxxxxyyyyyyyyzzzzzzzz
When complete, record the PIN given to you and provide it here:
接下来我看到的是浏览器中的以下屏幕:
我选择“授权应用程序”,然后我离开了 api.twitter.com。我从来没有看到前进所需的 PIN 码。
欢迎任何有关如何解决此问题的想法(并检索我需要的 PIN 以启用我正在尝试创建的连接)!