如何使用guzzleHttp创建请求?

时间:2015-07-17 04:15:24

标签: php request guzzle

我使用了GuzzleHttp,我已经按照以下命令创建了请求:

use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Request;

$url = 'http://localhost/api/get_data?token=123456';
$client = new Client();
$request = $client->createRequest('GET', $url, []);

但是error

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

为什么我会错过?我认为参数是对的!

1 个答案:

答案 0 :(得分:4)

之所以使用Guzzle 5.x,则该消息最有可能来自使用6.x版本。我发布了6.x版文档的链接,但我能找到的只是http://guzzle.readthedocs.org/en/latest/quickstart.html 并且它没有语义版本。