Saya mempunyai ralat ini:
Parameter 1 dihantar ke SymfonyComponentHttpFoundationRequest::__construct() mestilah tatasusunan yang diberikan, jenis rentetan, dipanggil dalam C:xampphtdocssatusehat2appHttpControllersPasienController.php baris 68.
Ini fungsi saya
public function curl_postman() { $client = new Client(); $headers = [ 'Content-Type' => 'application/json', 'Authorization' => 'My Bearer token' ]; $body = ''; $request = new Request('GET', 'my-api-address', $headers, $body); $res = $client->sendAsync($request)->wait(); echo $res->getBody(); }
Baris 68 ialah
$body = '';
Anda boleh menggunakan
SymfonyComponentHttpFoundationRequest::create()
来代替,它隐式调用请求工厂并返回Request
objek.PS: Tidak perlu menyatakan secara eksplisit
method
参数,因为'GET'
ialah nilai lalai.