There's also https://requestbin.com/ which provides a free endpoint for sending HTTP requests and observing the HTTP payload and headers.
You can also make a request bin private, protected by Google / Github logins if you're sending sensitive data, and you can delete any requests you send to the endpoint.
发布评论
评论(5)
还有 https://requestbin.com/ 它提供了一个免费端点,用于发送 HTTP 请求并观察 HTTP 负载和标头。
如果您发送敏感数据,您还可以将请求箱设为私有,并受 Google/Github 登录保护,并且可以删除发送到端点的任何请求。
There's also https://requestbin.com/ which provides a free endpoint for sending HTTP requests and observing the HTTP payload and headers.
You can also make a request bin private, protected by Google / Github logins if you're sending sensitive data, and you can delete any requests you send to the endpoint.
过了一会儿,我找到了 PostBin (http://www.postbin.org)。
正是我一直在寻找的东西!
After a while I've found PostBin (http://www.postbin.org).
Just what I was looking for!
您可以直接使用 https://requestbin.com/ .com/" rel="nofollow noreferrer">https://pipedream.com/ 这是 requestbin 的托管位置。
Instead of https://requestbin.com/, you can directly use https://pipedream.com/ which is where requestbin is hosted on.
有一些网站允许您创建公共端点并监控请求:
如果您想实际开发 webhook 的端点,您可以使用 Svix CLI Listener:
https://github.com/svix/svix-cli#using- the-listen-command
这将允许您轻松地将传入公共端点的请求引导到本地端口,您可以在其中对其运行逻辑。
There are a few websites allowing you to create a public endpoint and monitor the requests:
If you want to actually develop your webhook's endpoint you can use the Svix CLI Listener:
https://github.com/svix/svix-cli#using-the-listen-command
This will allow you to easily channel request coming in to a public endpoint to a local port where you can run your logic against it.
您也可以在邮递员上进行。它可以在谷歌浏览器上使用。对于firefox可以使用RESTClient
You can do also do it on postman. It is available on google-chrome. For firefox RESTClient can be used