我一直在使用freescout
票务。现在我需要将我的 nodejs 端点作为 webhook 集成到其中。
我尝试过使用它,并且freescout
总是在指定事件上达到我的端点,但总是request.body
为空。
我无法进入req.body
,nodejs
但是当我尝试相同的方法时,php
它可以工作并返回给我完整的对象req.body
php的代码如下
header('Content-Type: application/json');
$request = file_get_contents('php://input');
$req_dump = print_r($request, true);
$fp = file_put_contents('request.log', $req_dump);
在节点上,我使用的是 express,所以我厌倦了添加bodyparser.json()
cors
,但没有任何效果。