如何在IntelliJ的REST客户端中将文件作为POST请求的参数发送?

问题描述 投票:0回答:1

我想将<MYURL>/myaddres?path=<MYPATH>&content=<MYCONTENT>发送到IntelliJ中基于编辑器的REST客户端的服务,但是从文件中获取<MYCONTENT>的内容。

可能吗?

intellij-idea clion rest-client
1个回答
0
投票

是的,您应该键入<符号,然后键入文件的路径:POST

POST http://example.com:8080/api/html/post
Content-Type: application/json

< ./input.json

更多信息:https://www.jetbrains.com/help/idea/exploring-http-syntax.html#provide-request-body

© www.soinside.com 2019 - 2024. All rights reserved.