从 webhook 捕获响应
是否有一个简单的脚本可以从 webhooks 捕获 POST 并将其保存到数据库中,就像 PostBin 一样?
谢谢, B.
Is there a simple script that will capture POSTs from webhooks and save them to a DB, just like PostBin?
Thanks,
B.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
自己动手制作一个应该很简单。下面是一些伪代码。
数据库:
PHP
这将跟踪所有传入的 post 请求并将其与请求时间一起存储在数据库中。
您还可以添加其他数据,例如引荐来源网址、cookie 数据等。
请务必注意安全,以防公开此 URL。
祝你好运!
It should be pretty simple to whip one up yourself. Below is some pseudo code.
Database:
PHP
This will track all the incoming post requests and store it in the database along with the time of the request.
You can also add additional data such as referrer, cookie data etc.
Make sure to take care of security in case you are exposing this URL publicly.
Good luck!