尝试使用ROAuth连接到Twitter Streaming API,获取"错误:禁止"

时间:2016-11-01 15:12:52

标签: twitter-oauth roauth

我尝试使用StreamR来获取源自特定位置的推文流。在我这样做之前,我需要使用ROAuth进行握手。这是我的工作:

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

my_oauth$handshake()

my_oauth$handshake()执行并复制PIN时,我会Error: Forbidden。为什么呢?

1 个答案:

答案 0 :(得分:0)

我将http更改为https es并且有效。