gpt4 book ai didi

R 以编程方式更改 IP 地址

转载 作者:行者123 更新时间:2023-12-01 12:24:30 25 4
gpt4 key购买 nike

当前通过将不同的字符串传递给 html_session() 来更改 user_agent方法。

有没有办法在抓取网站时更改计时器上的 IP 地址?

最佳答案

您可以通过 use_proxy 使用代理(它会更改您的 IP)如下:

html_session("you-url", use_proxy("proxy-ip", port))

更多详情请见: ?httr::use_proxy
要检查它是否正常工作,您可以执行以下操作:
require(httr)

content(GET("https://ifconfig.co/json"), "parsed")
content(GET("https://ifconfig.co/json", use_proxy("138.201.63.123", 31288)), "parsed")

第一次调用将返回您的 IP。第二次调用应该返回 138.201.63.123作为ip。

此代理取自 http://proxylist.hidemyass.com/ - 没有任何保证...

关于R 以编程方式更改 IP 地址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41466263/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com