Since it is easy in R, I am using rvest package to parse HTML to extract informations from website.
I am wondering what\'s my User-Agent (if there is any) during the
I used https://httpbin.org/user-agent to find out:
library(rvest) se <- html_session( "https://httpbin.org/user-agent" ) se$response$request$options$useragent
Answer:
[1] "libcurl/7.37.1 r-curl/0.9.1 httr/1.0.0"
See this bug report for a way to override it.