xiaogang 4 rokov pred
rodič
commit
334e1a6756

+ 3 - 0
app/Http/Controllers/Api/TencentController.php

xqd
@@ -10,6 +10,9 @@ use function Symfony\Component\Translation\t;
 class TencentController extends Controller
 {
     public function notify(Request $request){
+        $data = \Symfony\Component\HttpFoundation\Request::createFromGlobals()->getContent();
+
+        file_put_contents('logs/tencent.log',var_export($data,true).PHP_EOL,FILE_APPEND);
         file_put_contents('logs/tencent.log',var_export($request->all(),true).PHP_EOL,FILE_APPEND);
     }
 }