Laravel guzzle call不工作,在邮递员工作正常

时间:2017-10-13 08:12:06

标签: php laravel guzzle

我正试着用lazzle在laravel打电话:

enter image description here

这是我的laravel代码guzzle:

$client = new Client();

$data = array('owner' => 'owner', 'license' => 'license');

$request = $client->post(
    'https://url.com/?action=identify',
    $params = [
      'un' => 'one',
      'deux' => 'two',
    ]);

$response = $request->send();

return $response;

出于某种原因,我总是得到错误:

  

cURL错误6:无法解析主机

0 个答案:

没有答案