Changing user agent string in HTTP request in R

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.

+5
source share
1 answer

options("HTTPUserAgent")or getOption("HTTPUserAgent")displays your current settings, and options(HTTPUserAgent="My settings")- a way to change it.

+9
source

All Articles