1
我想通過使用GuzzleHttp \ Psr7 \ Request發送代碼,不知何故,我得到錯誤無效的資源類型:array,以下是我的代碼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指南。