我使用了GuzzleHttp,创建了以下命令请求:
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;
$url = 'http://localhost/api/get_data?token=123456';
$client = new Client();
$request = $client->createRequest('GET', $url, []);
但是错误:
Argument 3 passed to GuzzleHttp\Client::request() must be of the type array, string given, called in /home/datnq/www/slim/vendor/guzzlehttp/guzzle/src/Client.php on line 88 and defined
我为什么想念?我认为参数是正确的!
解决方法:
这样做的原因是针对Guzzle 5.x,但是,该消息很可能来自于6.x版本.我会发布指向文档6.x版本的链接,但我只能找到http://guzzle.readthedocs.org/en/latest/quickstart.html
并且没有语义版本.