How to use HTTP (not HTTPS) with RequestBin
I would like to use RequestBin tool to debug HTTP (not HTTPS). However, it seems that it doesn't support it, for example:
$ curl http://requestb.in/1eqnllm1 -vvvv
* Hostname was NOT found in DNS cache
* Trying 104.31.87.204...
* Connected to requestb.in (104.31.87.204) port 80 (#0)
> GET /1eqnllm1 HTTP/1.1
> User-Agent: curl/7.38.0
> Host: requestb.in
> Accept: */*
>
< HTTP/1.1 301 Moved Permanently
< Date: Tue, 23 May 2017 09:56:28 GMT
< Transfer-Encoding: chunked
< Connection: keep-alive
< Set-Cookie: __cfduid=ddf08bf899d8bb92e06630f02f37f0f471495533388; expires=Wed, 23-May-18 09:56:28 GMT; path=/; domain=.requestb.in; HttpOnly
< Cache-Control: max-age=3600
< Expires: Tue, 23 May 2017 10:56:28 GMT
< Location: https://requestb.in/1eqnllm1
< X-Content-Type-Options: nosniff
* Server cloudflare-nginx is not blacklisted
< Server: cloudflare-nginx
< CF-RAY: 3637253d814f0de1-MAD
<
* Connection #0 to host requestb.in left intact
I want to get 200 OK
not a302 Moved Permanently
Is there a way to set up RequestBin this way please? I looked at the web page but couldn't find anything ...
An HTTP-capable alternative to RequestBin is also welcome.
+3
source to share
3 answers
I just hit this too. Says on twitter that they only moved to https. https://twitter.com/johnsheehan/status/865646082654584832
Attempt -> http://putsreq.com/
+4
source to share
You can try http://requestbin.net/
It is similar to requestb.in and supports http.
+1
source to share