使用Postman上传文件测试

Upload file test with Postman

我正在测试使用 Postman 将文件上传到 SharePoint online。在我的 post 请求中,我将 body 设置为 form-data 并添加一个文件参数,其中包含一个名为 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 header 设置为

application/x-www-form-urlencoded 或者 multipart/form-data

但运气不好

请按照以下步骤-

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.

希望对小伙伴有帮助。

在我的例子中,将正文设置为二进制类型解决了我使用 Postman 进行测试的问题