作者 王晓刚
1 个管道 的构建 通过 耗费 0 秒

接收推送消息

... ... @@ -32,16 +32,15 @@ class LoadController extends HomeBaseController
}
public function notify(){
$param = $_POST['RequestData'];
// if(empty($param['RequestType'])){
// $this->error('error');
// }
// if($param['RequestType'] != 101){
// $this->error('error');
// }
cache('param',$param);
exit();
$result = json_decode($param['RequestData'],true);
$RequestType = $_POST['RequestType'];
$RequestData = $_POST['RequestData'];
if(empty($RequestType)){
$this->error('error');
}
if($RequestType != 101){
$this->error('error');
}
$result = json_decode($RequestData,true);
cache('result',$result);
$bird = config('bird');
echo '{
... ...