在PHP中使用Guzzle進行HTTP請求的基本步驟如下:
composer require guzzlehttp/guzzle
use GuzzleHttp\Client;
$client = new Client();
$response = $client->request('GET', 'https://api.example.com');
$response = $client->request('POST', 'https://api.example.com', [
'form_params' => [
'key1' => 'value1',
'key2' => 'value2'
]
]);
$body = $response->getBody();
echo $body;
這些是基本的使用方法,根據具體的需求,可以根據Guzzle的文檔進行更詳細的配置和使用。