标签: php node.js bash shell node-modules
我想在Node.js服务器上接收Webhook(因为它是异步属性)。 由于我的其余代码都是用PHP构建的,因此我计划仅在接收到数据时执行Shell脚本。 这是shell脚本: receive.sh:
nohup dothings.php "$1" 2>&1 &
其中$ 1是Webhook URL上接收到的数据(nodejs文件) 那么如何使用nodejs将收到的webhook传递给shell脚本? 谢谢!