diff --git a/app/controller/IndexController.php b/app/controller/IndexController.php index ac23db5..8a06882 100644 --- a/app/controller/IndexController.php +++ b/app/controller/IndexController.php @@ -73,4 +73,19 @@ class IndexController } + public function dataviewTouchPush(Request $request){ + $parmas=$request->get(); + $api = new Api( + // webman下可以直接使用config获取配置,非webman环境需要手动写入相应配置 + 'http://127.0.0.1:3232', + config('plugin.webman.push.app.app_key'), + config('plugin.webman.push.app.app_secret') + ); + // 给订阅 user-2 的所有客户端推送 message 事件的消息 + $api->trigger('user-2', 'message', [ + 'from_uid' => 2, + 'content' => $parmas + ]); + return json(['code' => 0, 'msg' => 'ok', 'data'=>$parmas]); + } } diff --git a/app/view/index/view.html b/app/view/index/view.html index 67ebb26..90afcfd 100644 --- a/app/view/index/view.html +++ b/app/view/index/view.html @@ -6,9 +6,32 @@