I want to connect R to Twitter. I have followed the steps set our here: http://cran.r-project.org/web/packages/twitteR/vignettes/twitteR.pdf
The code that I have is as follows:
library(ROAuth)
cred <- OAuthFactory$new(consumerKey="xyz",
consumerSecret=xyz",
requestURL="https://api.twitter.com/oauth/request_token",
accessURL="https://api.twitter.com/oauth/authorize",
authURL="https://api.twitter.com/oauth/access_token")
cred$handshake(ssl.verifypeer = FALSE)
When I get the twitter link: https://api.twitter.com/oauth/access_token?oauth_token=YZZOYJ1liH1TDEY8G6Eb3YmgAWQlgGiEfAzI1ADwZ4
and load it in my broweser it brings back a blank page with no information on the PIN. Can anyone tell me why this link is blank