wupengfei 2 gadi atpakaļ
vecāks
revīzija
51a47c3636

+ 2 - 38
application/api/controller/Qc.php

@@ -39,44 +39,8 @@ class Qc extends Base {
 
 
     public function index()
     public function index()
     {
     {
-        $user_id = 3333 ;
-        $alert ='aaa';
-        if(empty($user_id)) return false;
-        $appKey = '02a7faefd91c8a6a446a6a14';
-        $masterSecret = 'ba2e100db997024d9b6e5d35';
-        $client = new Client($appKey, $masterSecret,null);
-        $push_payload = $client->push()
-            ->setPlatform(array('ios', 'android'))
-            ->addAlias(strval($user_id))
-            //->addAllAudience()
-            ->iosNotification($alert, array(
-                'badge' => '+1',
-                'content-available' => true,
-                'mutable-content' => true,
-                'category' => 'jiguang',
-                'extras' => array(
-                    'key' => 'value',
-                    'jiguang'
-                ),
-            ))->androidNotification($alert, array(
-                'title' => '消息通知',
-                // 'builder_id' => 2,
-                'extras' => array(
-                    'key' => 'value',
-                    'jiguang'
-                ),
-            ))->options(array(
-                'apns_production' => True,
-            ));
-        try {
-            $response = $push_payload->send();
-            return $response;
-        } catch  (\JPush\Exceptions\APIConnectionException $e) {
-            return $e;
-        } catch (\JPush\Exceptions\APIRequestException $e) {
-            return $e;
-        }
-
+        $res = WeChatPort::getAccessToken();
+        var_dump($res);
     }
     }
 
 
 
 

+ 23 - 0
application/api/controller/WeChatPort.php

@@ -0,0 +1,23 @@
+<?php
+namespace app\api\controller;
+use EasyWeChat\Factory;
+use EasyWeChat\MiniProgram\Application;
+use think\Controller;
+
+/**
+ * 微信接口
+ * Class WeChatPort
+ * @package app\api\controller\WeChatPay
+ */
+class WeChatPort extends Controller
+{
+    // 获取微信小程序AccessToken
+    public static function getAccessToken()
+    {
+        $res = http_curl('https://api.weixin.qq.com/cgi-bin/token?appid='.config('mini_program')['app_id'].'&secret='.config('mini_program')['secret'].'&grant_type=client_credential');
+        return $res;
+    }
+
+
+
+}

BIN
xixie.zip