用于发送multipart / form-data请求的工具

Tool for sending multipart/form-data request

我目前正在使用chrome-addon-postman-rest客户端轻松创建post/get请求,这是一个非常好的工具。

现在,我想调试一个上传脚本,我正在寻找一个工具来将请求编码为"多部分/表单数据",以便我也可以发送一个文件。

谢谢你的帮助


更新:我创建了一个关于发送多部分/表单数据请求的视频来更好地解释这一点。

实际上,邮递员可以做到这一点。这是截图

更新版本:从Postman Chrome扩展捕获的屏幕截图enter image description here

另一版本

enter image description here

老版本

enter image description here

确保您查看了@maxkoryukov的评论

Be careful with explicit Content-Type header. Better - do not set it's
value, the Postman is smart enough to fill this header for you. BUT,
if you want to set the Content-Type: multipart/form-data - do not
forget about boundary field.


下面是使用邮差上载文件(多部分)的屏幕截图。常见的问题是您手动将内容类型:多部分/表单数据放入POST请求的头中。实际上,你不应该,邮递员会帮你的。

Body Part

不要Common Error

应该是should remove content type from the Header

希望它有帮助