gpt4 book ai didi

codeigniter - 如何在 Codeigniter 上使用 Guzzle?

转载 作者:可可西里 更新时间:2023-11-01 17:06:26 26 4
gpt4 key购买 nike

我正在 Codeigniter 3.2 上创建一个与 Facebook Graph API 配合使用的 Web 应用程序。为了发出 GET 和 POST HTTP 请求,我需要一个用于 Codeigniter 的 curl 库。我找到了 Guzzle,但我不知道如何在 Codeigniter 上使用 Guzzle。

最佳答案

检查此链接:

https://github.com/rohitbh09/codeigniter-guzzle

  $this->load->library('guzzle');

# guzzle client define
$client = new GuzzleHttp\Client();

#This url define speific Target for guzzle
$url = 'http://www.google.com';

#guzzle
try {
# guzzle post request example with form parameter
$response = $client->request( 'POST',
$url,
[ 'form_params'
=> [ 'processId' => '2' ]
]
);
#guzzle repose for future use
echo $response->getStatusCode(); // 200
echo $response->getReasonPhrase(); // OK
echo $response->getProtocolVersion(); // 1.1
echo $response->getBody();
} catch (GuzzleHttp\Exception\BadResponseException $e) {
#guzzle repose for future use
$response = $e->getResponse();
$responseBodyAsString = $response->getBody()->getContents();
print_r($responseBodyAsString);
}

关于codeigniter - 如何在 Codeigniter 上使用 Guzzle?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40026044/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com