Web Scraping in R
Timo Grossenbacher
Instructor
response <- GET('http://example.com', user_agent("Hey, it's me, Timo!
Reach me at [email protected]."))
Alternatively:
set_config(add_headers(`User-Agent` = "Hey, it's me, Timo!
Reach me at [email protected]."))
response <- GET('http://example.com')
Web Scraping in R