用于测试 post 请求的 Web 应用程序

发布于 2024-11-24 14:55:14 字数 112 浏览 9 评论 0原文

是否有用于测试 post 请求的 Web 应用程序?我想象的情况是,您访问该网站,然后它会将您重定向到一个唯一的 URL。然后,您可以向 URL 发送一个 POST 请求,该 URL 将在收到请求后显示该请求。

Is there a web application for testing post requests? What I imagine it'd be like is you would visit the site and then it would redirect you to a unique URL. You could then send a post request to the URL which would display the request after it was received.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

淡看悲欢离合 2024-12-01 14:55:14

Microsoft 的替代方案:WFetch

POST 请求说明

Alternative from Microsoft: WFetch

POST request instruction

贪了杯 2024-12-01 14:55:14

这看起来更符合您正在寻找的内容:

http://www.htttools.com< /a>

This looks like it would be more along the lines of what you're looking for:

http://www.htttools.com

铁憨憨 2024-12-01 14:55:14

Rest Client 是我过去使用过的 Firefox 插件作为 Http Post/Get 测试工具。

Rest Client is a Firefox Add On that I have used in the past as an Http Post/Get testing tool.

作死小能手 2024-12-01 14:55:14

Firefox 的 Firebug 插件中的“net”选项卡将显示所有请求的内容,包括 POST。您还可以使用 TamperData 拦截并修改它们。

Fiddler 将为 Internet Explorer 和其他 Windows 程序执行相同的操作。 Wireshark 也会显示此信息。

The "net" tab in the Firebug plugin for Firefox will show you the contents of all requests including POSTs. You can also intercept and modify them with TamperData.

Fiddler will do the same for Internet Explorer and other windows programs. Wireshark will also show this information.

ペ泪落弦音 2024-12-01 14:55:14

有多种方法。如果您想进行基于浏览器的自动化测试,可以使用 Selenium/Java 或 风车/Python。或者,如果您想执行白盒测试,您可以编写向 Web 应用程序发出 http post 请求的脚本(例如使用 httplib(如果您使用的是 Python)),获取响应并验证响应是否符合预期。

There are multiple approaches. If you want to do automated browser-based testing, you could use Selenium/Java or Windmill/Python. Alternatively, if you want to perform white-box testing, you can write scripts that make a http post request to the web application (e.g. using httplib if you are using Python), obtains the response and verifies that the response is as expected.

帅哥哥的热头脑 2024-12-01 14:55:14

RequestBin 允许您创建临时 URL 并查看最近 20 个请求。

RequestBin allows you to create a temporary URL and view the last twenty requests.

无敌元气妹 2024-12-01 14:55:14

通过 PutsReq,您可以使用 JavaScript 测试请求并模拟响应。

With PutsReq you can test requests and simulate responses using JavaScript.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文