songxingwei 3 years ago
parent
commit
2b257dc421
1 changed files with 3 additions and 2 deletions
  1. 3 2
      application/common/library/Common.php

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

@@ -365,10 +365,11 @@ class Common
      * 公众号推送消息
      * 公众号推送消息
      */
      */
     public static function sendTemplateMsg($openid,$template_id,$path,$data){
     public static function sendTemplateMsg($openid,$template_id,$path,$data){
-        $appid = Config::get_values('wechat_appid');
-        $appsecret = Config::get_values('wechat_appsecret');
+        $appid = Config::get_values('small_wechat_id');
+        $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;