songxingwei 3 years ago
parent
commit
c7f3d5ebf7
1 changed files with 2 additions and 3 deletions
  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');
         $appsecret = Config::get_values('small_wechat_secret');
         $url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=' . $appid . '&secret=' . $appsecret;
         $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);
         $res = json_decode(file_get_contents($url),true);
-        print_r($res);die;
         $access_token = $res['access_token'];
         $access_token = $res['access_token'];
         //请求url
         //请求url
         $url='https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token='.$access_token;
         $url='https://api.weixin.qq.com/cgi-bin/message/wxopen/template/uniform_send?access_token='.$access_token;
         $arr=[
         $arr=[
             'touser'=>$openid,
             'touser'=>$openid,
             'mp_template_msg'=>[
             'mp_template_msg'=>[
-                "appid"=>Config::get_values('small_wechat_id'),
+                "appid"=>Config::get_values('wechat_appid'),
                 "template_id"=>$template_id,
                 "template_id"=>$template_id,
                 "url"=>$path,
                 "url"=>$path,
                 'miniprogram'=>[
                 'miniprogram'=>[
-                    "appid"=>Config::get_values('wechat_appid')
+                    "appid"=>Config::get_values('small_wechat_id')
                 ],
                 ],
                 'data'=>$data
                 'data'=>$data
             ],
             ],