R Error "Failed to connect port 443: Timeout"

I am trying to read the webpage https://csmprod.service-now.com/navpage.do . This site needs login credentials.

library(XML)
library(RCurl)

content <- getURL("https://csmprod.service-now.com/navpage.do")
doc <- htmlParse(content, asText = TRUE)

      

Also I find myself failing with error 443. Can anyone help with this? But I can access the above site from the browser.

And I need some code to parse user credentials and auto login when read.

+3


source to share





All Articles