Guzzle6错误无效的资源类型:发送GuzzleHttp \ Psr7 \ Request时的数组

时间:2016-07-28 09:59:09

标签: php guzzle guzzle6

我试图通过使用GuzzleHttp \ Psr7 \ Request发送代码,不知怎的,我得到错误无效的资源类型:数组,以下是我的代码

$params = ["name"=>"myName","id"=>"myId"];
$client = new Client();
$request = new Request('PUT','https://api.hitbox.tv/media/live/myName?authToken=myToken',["content-type"=>'application/json'],["json"=>$params]);

$response = $client->send($request);

我关注this指南。

1 个答案:

答案 0 :(得分:5)

如果您想在请求中使用JSON,只需使用json_encode()

创建它
$request = new Request(
    'PUT',
    'https://api.hitbox.tv/media/live/myName?authToken=myToken',
    ["content-type" => 'application/json'],
    json_encode($params)
);