我发现有两种设置代理服务器的方法,一种是通过 chrome Web 驱动程序功能,另一种是在创建 chrome 客户端时直接设置
$this->client = Client::createChromeClient(null, [
'--proxy-server=socks://196.14.52.63:35048',
'--headless',
"--disable-gpu",
]);
但是在设置代理IP和端口后,出现以下错误:
Curl error thrown for http POST to /session/cce06908d68a1e96bc6d1cb3b798aa14/url with params: {"url":"https:\/\/some-site\/login"}\n
Operation timed out after 30001 milliseconds with 0 bytes received
基本上我想在使用 Symfony panther抓取数据时使用代理服务器。