4

I'm trying to read a CSV with R from a URL that has auth, I do have the password and everything I just need to know what to add to the command, btw my password does include the @ char so it messed up my scheme [1]

This is the command I'm trying:

products <- read.csv("http://username:pass@[email protected]/api/products_by_date.csv?start_date=2011-04-01&end_date=2011-04-01", head=TRUE)

My output is:

Error in file(file, "rt") : cannot open the connection
In addition: Warning message:
In file(file, "rt") : unable to resolve 'username'

[1] scheme://username:password@domain:port/path?query_string#fragment_id

1 Answer 1

6

you can try getURL in the RCurl package, which has the functionality to authenticate HTTP requests. see ?getURL for an example.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.