💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] # 安装 ~~~shell $ composer require overtrue/wechat:~4.0 -vvv ~~~ # 一次性接入验证 ~~~php use EasyWeChat\Factory; $config = [ 'app_id' => 'wx3cf0f39249eb0xxx', 'secret' => 'f1c242f4f28f735d4687abb469072xxx', 'token' => 'TestToken', 'response_type' => 'array', //... ]; $app = Factory::officialAccount($config); $response = $app->server->serve(); // 将响应输出 $response->send();exit; // Laravel 里请使用:return $response; ~~~ 安全模式下请一定要配置`aes_key` 请一定要将微信后台的开发者模式 “**启用**” !!!!!!看到红色 “**停用**” 才真正的是启用了。 最后,请不要用浏览器访问这个地址,它是给微信服务器访问的,不是给人访问的。