songxingwei 3 лет назад
Родитель
Сommit
0c9b735f05
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      application/common/library/Common.php

+ 1 - 0
application/common/library/Common.php

@@ -369,6 +369,7 @@ class Common
         $appsecret = Config::get_values('wechat_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);
+        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;