我需要一个实时测试服务器,它通过HTTP GET接受我对基本信息的请求,并允许我POST(即使它真的什么都不做)。这完全是为了测试目的。

这里有一个很好的例子。它很容易接受GET请求,但我需要一个接受POST请求以及。

有人知道我也可以发送虚拟测试消息的服务器吗?


当前回答

我一直在使用这个REST API: https://restful-api.dev

它无限期地存储所创建的对象。 此外,该模式非常灵活,您可以传递任何JSON数据。

我是一个前端开发人员,当我需要创建一些示例数据时,这是非常有用的。这是我能找到的唯一一家不需要注册或代币就能免费使用的。

其他回答

创建选择一个免费的网络主机,并把以下代码

<h1>Request Headers</h1>
<?php
$headers = apache_request_headers();
     
foreach ($headers as $header => $value) {
    echo "<b>$header:</b> $value <br />\n";
}
?>

下面是一个邮差回声:https://docs.postman-echo.com/

例子:

curl --request POST \
  --url https://postman-echo.com/post \
  --data 'This is expected to be sent back as part of response body.'

回应:

{"args":{},"data":"","files":{},"form":{"This is expected to be sent back as part of response body.":""},"headers":{"host":"postman-echo.com","content-length":"58","accept":"*/*","content-type":"application/x-www-form-urlencoded","user-agent":"curl/7.54.0","x-forwarded-port":"443","x-forwarded-proto":"https"},"json":{"...

有http://ptsv2.com/

“在这里,你会发现一个服务器,它可以接收你想要发送的任何POST,并存储内容供你审阅。”

一些在线httpbin:

https://httpbin.org/ https://httpbingo.org/ https://quic.aiortc.org/httpbin/

获取客户端ip,端口,ua..

http://ifconfig.io/

获取客户端ip, isp

https://www.cip.cc/

Nc一行本地测试服务器

在Linux下用一行设置本地测试服务器:

nc -kdl localhost 8000

另一个shell上的请求生成器示例:

wget http://localhost:8000

然后在第一个shell中,你看到请求显示出来:

GET / HTTP/1.1
User-Agent: Wget/1.19.4 (linux-gnu)
Accept: */*
Accept-Encoding: identity
Host: localhost:8000
Connection: Keep-Alive

netcat-openbsd包中的nc是广泛可用的,并且已预先安装在Ubuntu上。

在Ubuntu 18.04上测试。