songxingwei 3 年之前
父节点
当前提交
c7f3d5ebf7
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      application/common/library/Common.php

+ 2 - 3
application/common/library/Common.php

@@ -369,18 +369,17 @@ class Common
         $appsecret = Config::get_values('small_wechat_secret');
         $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' . $appid . '&secret=' . $appsecret;
         $res = json_decode(file_get_contents($url),true);
-        print_r($res);die;
         $access_token = $res['access_token'];
         //请求url
         $url='https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token='.$access_token;
         $arr=[
             'touser'=>$openid,
             'mp_template_msg'=>[
-                "appid"=>Config::get_values('small_wechat_id'),
+                "appid"=>Config::get_values('wechat_appid'),
                 "template_id"=>$template_id,
                 "url"=>$path,
                 'miniprogram'=>[
-                    "appid"=>Config::get_values('wechat_appid')
+                    "appid"=>Config::get_values('small_wechat_id')
                 ],
                 'data'=>$data
             ],