0
當我嘗試使用Laravel中的Goutte插件驗證我的代理時,出現上述錯誤。 以下是代碼:URI必須是字符串或UriInterface與Goutte Laravel
$client = new Client();
$client->getClient()->setDefaultOption(['proxy' => 'http://x.x.x.x:80']);
$client->getClient()->setDefaultOption(['auth' => ['username', 'pass', 'Basic']]);
$url = 'http://ifconfig.me';
$crawler = $client->request('GET', $url);
$status = $client->getResponse()->getStatus();
dd($status);
請有任何建議。謝謝 !