使用Postman上传文件测试

时间:2018-11-28 12:12:29

标签: postman sharepoint-online

我正在测试使用Postman在线上传到SharePoint的文件。在我的发布请求中,我将主体设置为表单数据,并添加了一个名为a.txt的文本文件的文件参数。文本文件包含文本

one
two
three

当我执行请求时,我的文件已上传,但是当我打开文件时,内容为

----------------------------235004993628819232914336
Content-Disposition: form-data; name="file"; filename="a.txt"
Content-Type: text/plain

one
two
three
----------------------------235004

我尝试将Content-Type标头设置为

application / x-www-form-urlencoded 要么 multipart / form-data

但是没有运气

2 个答案:

答案 0 :(得分:0)

请按照以下步骤操作-

1. Go to the body of the API
2. pass the parameter or key
3. When you pass the key you have a option of value of Text/File like below
4.Choose the file from
5. Click on send.
6. Get your response.

希望这对伙伴有帮助。

enter image description here

答案 1 :(得分:0)

在我的案例中,将主体设置为二进制类型解决了我的Postman测试问题