实现 Webhooks 的服务器端
如果我想启用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.