从 webhook 捕获响应

发布于 2024-11-26 17:26:59 字数 78 浏览 0 评论 0原文

是否有一个简单的脚本可以从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沒落の蓅哖 2024-12-03 17:26:59

自己动手制作一个应该很简单。下面是一些伪代码。

数据库:

PostTable
    key varchar(32)
    value text
    date_created timestamp

PHP

foreach $_POST as key, value
    query = "insert into PostTable values(key, value, now())
    execute query

这将跟踪所有传入的 post 请求并将其与请求时间一起存储在数据库中。

您还可以添加其他数据,例如引荐来源网址、cookie 数据等。

请务必注意安全,以防公开此 URL。

祝你好运!

It should be pretty simple to whip one up yourself. Below is some pseudo code.

Database:

PostTable
    key varchar(32)
    value text
    date_created timestamp

PHP

foreach $_POST as key, value
    query = "insert into PostTable values(key, value, now())
    execute query

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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文