用于测试的 HTTP Post 多部分工具
有谁知道一个小测试工具(例如 Firefox 的 Poster / RestTool)能够上传文件并在同一个帖子请求(多部分)中发送文本正文?
does anyone know a little test tool (like Poster / RestTool for Firefox) that is able to upload a file and send a text body within the same post request (Multipart)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
它不是 firefox-addon,但我真正推荐的是使用 curl 工具。它非常适合使用 RESTful HTTP API,因为它非常接近 HTTP 协议。因为它是基于 CLI 的,所以作为图形插件更灵活(例如,您可以邮寄或可以使用示例调用来记录您的 api)。
例如,使用curl 执行多部分请求将是:
您期望在服务器端获得哪种多部分(例如多部分/表单数据或多部分/混合)。
有什么理由让它必须是一个火狐插件吗?我见过有人使用 RestClient,但我从未见过它与多部分一起工作。
It is not a firefox-addon, but what I can really recommend is to use curl tool. It fits perfect when playing around with RESTful HTTP APIs because it is very close to HTTP protocol. Because it is CLI based it is more flexible as graphical addon (e.g. you can mail around or can document your api with sample calls).
E.g. doing a multipart request with curl would be:
What kind of multipart do you expect on server-side (e.g. multipart/form-data or multipart/mixed).
Is there a reason why it has to be a firefox addon? I have seen people using RestClient, but I never saw it working with multipart.
您可以使用 Firefox poster 插件发送多部分 HTTP 帖子。
You can use Firefox poster add-on to send HTTP posts with multipart.
对于 Chrome/Chromium,有出色的 Postman 应用程序/扩展: http://www.getpostman.com/ 。
有关简短的视觉教程,您可以查看:https://stackoverflow.com/a/16022213/1667104。
For Chrome/Chromium there is the excellent Postman app/extension: http://www.getpostman.com/ .
For a brief visual tutorial you can check: https://stackoverflow.com/a/16022213/1667104 .
我现在喜欢在我的大多数 HTTP 项目中包含 http://aminus.net/wiki/Okapi 。
I like to include http://aminus.net/wiki/Okapi in most of my HTTP projects these days.
Firefox 有一些:
和 @joff 之前提到的海报
Firefox has a few:
and poster as mentioned earlier by @joff