...
|
...
|
@@ -32,7 +32,7 @@ class LoadController extends HomeBaseController |
|
|
}
|
|
|
public function notify(){
|
|
|
|
|
|
$param = $data = file_get_contents('php://input');
|
|
|
$param = $_POST['RequestData'];
|
|
|
// if(empty($param['RequestType'])){
|
|
|
// $this->error('error');
|
|
|
// }
|
...
|
...
|
@@ -40,6 +40,7 @@ class LoadController extends HomeBaseController |
|
|
// $this->error('error');
|
|
|
// }
|
|
|
cache('param',$param);
|
|
|
exit();
|
|
|
$result = json_decode($param['RequestData'],true);
|
|
|
cache('result',$result);
|
|
|
$bird = config('bird');
|
...
|
...
|
|