songxingwei 3 년 전
부모
커밋
2b257dc421
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  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){
-        $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;
         $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;