用AI赚第一桶💰低成本搭建一套AI赚钱工具,源码可二开。 广告
[TOC] > [手册](https://www.easywechat.com/6.x/open-platform/index.html#%E4%BD%BF%E7%94%A8%E6%8E%88%E6%9D%83%E7%A0%81%E8%8E%B7%E5%8F%96%E6%8E%88%E6%9D%83%E4%BF%A1%E6%81%AF) ## 概述 支持的接口有 ``` 公众号 微信支付 小程序 开放平台 企业微信 企业微信开放平台 通用 ``` ## 安装 ``` composer require w7corp/easywechat:^6.7 ``` ## 快速开始 ``` use EasyWeChat\OfficialAccount\Application; $config = [ 'app_id' => 'wx3cf0f39249eb0exx', 'secret' => 'f1c242f4f28f735d4687abb469072axx', 'token' => 'easywechat', 'aes_key' => '' // 明文模式请勿填写 EncodingAESKey //... ]; $app = new Application($config); // 如 通过公众号获取用户资料 $response = $app->getClient()->get("/cgi-bin/user/info?openid={$openid}&lang=zh_CN"); # 查看返回结果 var_dump($response->toArray()); ```