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?