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
             ],