Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to connect to a website through my university library. The procedure is to login to my library, then find this specific link in the library site. For example the url looks like this (as an example)

url="http://www.aaaa.com.proxy.library.ucsb.edu:2048/datasets"

To scrape the above link I want to use

doc = htmlTreeParse(url, useInternalNodes = T)

Although I was logged in through the library system, (That is how I found the link), I get the following error

Error: failed to load external entity "http:/www.aaaa.com.proxy.library.ucsb.edu:2048/datasets

I know this has something to do with the proxy connection but not sure how to fix this problem. What Should I do?

share|improve this question
1  
Not sure, but if you logged in to the library system, then maybe some cookies were set in your browser, which are independent from your R session. – daroczig Jan 19 at 0:40

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.