实现 Webhooks 的服务器端

发布于 2024-08-31 15:00:24 字数 172 浏览 6 评论 0原文

如果我想启用 Webhooks 的 Web 应用程序(我指的是服务器端,即事件发生并发起回调的服务器),是否有用于此目的的库,或者此功能通常是一部分Web 服务器堆栈的?

或者,我是否错误地看待这个问题,为了实现 Webhooks,我只需对我的应用程序进行编码以根据我关心的任何事件执行 HTTP POST 回调?

If I want to Webhooks-enable a web application (I'm referring to the server-side of things, ie the server where the event happens and the callback is initiated from), are there libraries for this, or is this functionality typically part of the web server stack?

Or, am I looking at this incorrectly, and to implement Webhooks I simply code my application to do an HTTP POST callback based on whatever events I care about?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

゛时过境迁 2024-09-07 15:00:24

Webhook 不是 Web 服务器的一部分。您必须使用您选择的编程语言自行对它们进行编程。

打开到正确服务器和端口的套接字,输出 http 标头和正文并关闭连接。

如果您使用 PHP,可以查看 cURL ,这让事情变得更容易一些。

Webhooks are not a part of the web server. You have to program them yourself in your programming language of choice.

Open a socket to the right server and port, output the http-headers and the body and close the connection.

If you're using PHP, you can take a look at cURL, which makes things a bit easier.

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