English 中文(简体)
Testing http callback or webhooks [closed]
原标题:

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 8 months ago.

I wish to see the content of a http callback generated by an application (i.e. paypal or Google s pubsubhubbub). Does anybody know of a simple service that I can use as endpoint for a http post and see the content of the http post?

问题回答

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.

After a while I ve found PostBin (http://www.postbin.org). Just what I was looking for!

Instead of https://requestbin.com/, you can directly use https://pipedream.com/ which is where requestbin is hosted on.

There are a few websites allowing you to create a public endpoint and monitor the requests:

  1. play.svix.com
  2. webhook.site

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.

You can do also do it on postman. It is available on google-chrome. For firefox RESTClient can be used





相关问题
How to set response filename without forcing "save as" dialog

I am returning a stream in some response setting the appropriate content-type header. The behavior I m looking for is this: If the browser is able to render content of the given content type then it ...

Which Http redirects status code to use?

friendfeed.com uses 302. bit.ly uses 301. I had decided to use 303. Do they behave differently in terms of support by browsers ?

Does HttpWebRequest send 200 OK automatically?

Background: I am implementing Paypal IPN handler. This great article on Paypal states that I am required to send a 200 OK back to Paypal after I read the response. The processing of IPN request is ...

Java HTTPAUTH

我试图把桌面应用程序连接起来,我是同D.icio.us api @ Delicious Alan书写的,简单地向他们提供我的用户名和密码,并请他把书记上写给我......。

Finding out where curl was redirected

I m using curl to make php send an http request to some website somewhere and have set CURLOPT_FOLLOWLOCATION to 1 so that it follows redirects. How then, can I find out where it was eventually ...

热门标签