r - Could not establish handwhake with twitteR -


i'm trying use twitter package r. so, i'm trying establish handshake code :

requrl <- "https://api.twitter.com/oauth/request_token" accessurl <- "http://api.twitter.com/oauth/access_token" authurl <- "http://api.twitter.com/oauth/authorize" twitcred <- oauthfactory$new(consumerkey=mykey, consumersecret=mysecret, requesturl=requrl, accessurl=accessurl, authurl=authurl) twitcred$handshake() 

this gets me error : error in function (type, msg, aserror = true) : couldn't connect host

since i'm behind proxy, suspect cause troubles. however, configured r (i can download packages without troubles). consequence, i'm little stuck.


Comments

Popular posts from this blog

python - matpltolib navigation toolbar edit curves and parameters line color automatically changes issue -

node.js - Nodejs javascript implementation of PBEWithMD5AndTripleDES/CBC/PKCS5Padding -