这篇文章主要介绍ThinkPHP6如何结合GuzzleHttp发送HTTP请求,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!ThinkPHP6 结合GuzzleHTTP发送HTTP请求背景thinkphp微信公众号程
这篇文章主要介绍ThinkPHP6如何结合GuzzleHttp发送HTTP请求,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!
thinkphp微信公众号程序主动调用微信的接口需要用到access_token,以及需要主动发送请求设置公众号菜单。
Guzzle是一个PHP的HTTP客户端,用来轻而易举地发送请求,并集成到我们的WEB服务上。
接口简单:构建查询语句、POST请求、分流上传下载大文件、使用HTTP cookies、上传JSON数据等等。发送同步或异步的请求均使用相同的接口。使用PSR-7接口来请求、响应、分流,允许你使用其他兼容的PSR-7类库与Guzzle共同开发。抽象了底层的HTTP传输,允许你改变环境以及其他的代码,如:对cURL与PHP的流或Socket并非重度依赖,非阻塞事件循环。中间件系统允许你创建构成客户端行为。
Guzzle中文文档:https://guzzle-cn.readthedocs.io/zh_CN/latest/
安装composer
因为thinkphp6采用composer安装,所以我的环境上已经装好了composer,此处略过安装composer方法。需要请自行百度。
安装Guzzle
进入到tp项目目录
cd /Applications/XAMPP/htdocs/tp1/tp
执行安装命令
composer require guzzlehttp/guzzle
在php.ini文档中打开extension=php_openssl.dll
在controller中引入GuzzleHttp
use GuzzleHttp\Client;use GuzzleHttp\Exception\GuzzleException;
下面的示例程序是在tp6中采用HTTP GET获取微信公众平台的access token
//微信公众平台获取access token url $url = 'https://api.weixin.qq.com/cgi-bin/token?'; //获取access token时需要携带的参数 $params = array( 'grant_type' => 'client_credential', 'appid' => config('app.WECHAT.APPID'), 'secret' => config('app.WECHAT.SECRET') ); $resp = null; try { //使用GuzzleHTTP发送get请求 $client = new Client(); $resp = $client->request('GET', $url.http_build_query($params)); } catch (GuzzleException $e){ print($e); } if (empty($resp)) { return null; } //获取微信公众平台的response $data = json_decode($resp->getBody(), true); if (isset($data['errcode']) && $data['errcode'] != 0) { throw new \think\Exception ($data['errmsg'], $data['errcode']); }
用法非常简单,直接看代码吧。
public function menu() { require __DIR__ . '/../../vendor/autoload.php'; //构建HTTP post JSON body数据 $data = array( 'button' => array( array( 'type' => 'click', 'name' => '主菜单1', 'sub_button' => array( array( 'type' => 'click', 'name' => '子菜单1', 'key' => self::MENU_MaiN_1_CHILD_1 ), array( 'type' => 'view', 'name' => '百度', 'url' => 'https://www.baidu.com' ) ) ), array( 'type' => 'click', 'name' => '主菜单2', 'sub_button' => array( array( 'type' => 'click', 'name' => '子菜单1', 'key' => self::MENU_MAIN_2_CHILD_1 ), array( 'type' => 'view', 'name' => 'QQ', 'url' => 'http://www.qq.com' ) ) ), array( 'type' => 'click', 'name' => '主菜单3', 'key' => self::MENU_MAIN_3 ) ) ); //构造请求json body和header数据 $options = json_encode($data, JSON_UNESCAPED_UNICODE); $jsonData = [ 'body' => $options, 'headers' => ['content-type' => 'application/json'] ]; $resp = null; try { $client = new Client(); //生成微信公众号菜单需要调用的微信接口url $url = 'https://api.weixin.qq.com/cgi-bin/menu/create?access_token=' . $this->_getAccessToken(); //发送http post请求 $resp = $client->post($url, $jsonData); } catch (GuzzleException $e){ print($e); } if (empty($resp)) { return null; } echo $resp->getBody(); }
以上是“ThinkPHP6如何结合GuzzleHTTP发送HTTP请求”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网PHP编程频道!
--结束END--
本文标题: ThinkPHP6如何结合GuzzleHTTP发送HTTP请求
本文链接: https://lsjlt.com/news/276783.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0