How to change user agent strings in HTTP requests made in R? And how do I understand what my current user agent string looks like?
Thanks in advance.
options("HTTPUserAgent")or getOption("HTTPUserAgent")displays your current settings, and options(HTTPUserAgent="My settings")- a way to change it.
options("HTTPUserAgent")
getOption("HTTPUserAgent")
options(HTTPUserAgent="My settings")