我尝试使用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
。为什么呢?
答案 0 :(得分:0)
我将http
更改为https
es并且有效。