我正在尝试使用Laravel中的Goutte(https://github.com/FriendsOfPHP/Goutte)抓取一个网站。 它工作正常,但在使用代理时会返回错误
$client = new Client([
'curl' => [ CURLOPT_SSLVERSION => 1 ],
]);
$proxy = 'http://50.239.245.110:80';
$client->setClient(new \GuzzleHttp\Client(['proxy' => $proxy]));
$crawler = $client->request('GET', 'https://symfony.com/doc/current/components/dom_crawler.html');
$test = $crawler->filter('h1')->extract(['_text']);
dd($test);
我添加了'curl'=> [CURLOPT_SSLVERSION => 1] ,因为它说ssl版本正确,但仍然显示相同的错误。