更改 R 中 http 请求中的用户代理字符串

发布于 2024-10-09 10:18:18 字数 72 浏览 6 评论 0原文

如何更改 R 中发出的 http 请求中的用户代理字符串?我如何知道我当前的用户代理字符串是什么样的?

提前致谢。

How does one change user agent strings in http requests made in R? And how do I figure out what my current user agent string looks like?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无所的.畏惧 2024-10-16 10:18:18

options("HTTPUserAgent")getOption("HTTPUserAgent") 打印您当前的设置,而 options(HTTPUserAgent="My settings") 是改变它的方法。

要临时更改此选项,请使用: withr::with_options:

withr::with_options(list(HTTPUserAgent="My settings"), download.file(..something..))

如果您使用download.file,请删除答案

options("HTTPUserAgent") or getOption("HTTPUserAgent") prints your current settings, and options(HTTPUserAgent="My settings") is the way to change it.

To temporary change this option use: withr::with_options:

withr::with_options(list(HTTPUserAgent="My settings"), download.file(..something..))

or Droplet answer if you use download.file.

花期渐远 2024-10-16 10:18:18

在接受的答案中使用 options() 的解决方案将全局更改整个会话的设置(除非您将其更改回来)。

download.file(),需要使用headers参数:

download.file("https://httpbin.org/user-agent", 
              destfile = "test.txt", 
              headers = c("User-Agent" = "My Custom User Agent"))

从R 4.0.0开始,你也可以在available.packages()install.packages() 它将被转发到 download.file()

The solution using options() in the accepted answer will change the setting globally for the whole session (unless you change it back).

To change the User-Agent temporarily in a request made by download.file(), you need to use the headers argument:

download.file("https://httpbin.org/user-agent", 
              destfile = "test.txt", 
              headers = c("User-Agent" = "My Custom User Agent"))

Since R 4.0.0, you can also use this argument in available.packages() and install.packages() and it will be forwarded to download.file().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文