0

我正在尝试使用 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. 为什么?

4

1 回答 1

0

我将https 更改为httpses 并且它有效。

于 2016-11-01T15:30:30.170 回答