多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
注意: 微信,支付宝提交到服务器的订单价格必须一致 微信公众号填写的授权域名 这种 是需要填写两个的 www.lu17996.com lu17996.com 微信支付使用 EasyWeChat 扩展 网址 `https://www.easywechat.com` 安装方法 ``` ~~~shell $ composer require overtrue/wechat:~4.0 -vvv ~~~ ``` # 除微信支付外,其他微信配置都使用 $this->wechat_config 注意微信授权登录回调地址和支付回调地址, 不能有登录拦截 ``` ~~~ $this->wechat_config = [ 'app_id' => '', 'mch_id' => '', 'key' => '', 'secret' => '', 'token' => '', 'notify_url' => 'http://' . $_SERVER['SERVER_NAME'] . url('home/pays/notify_url'), 'log' => [ 'level' => 'debug', 'file' => '/tmp/easywechat.log', ], 'oauth' => [ 'scopes' => ['snsapi_userinfo'], 'callback' => 'http://' . $_SERVER['HTTP_HOST'] . url('home/login/login_auth'), ], 'aes_key' => '', ]; ~~~ ```