在Postman中将body(json)放入 GET 请求是有任何解决方法(在GET模式下禁用了body按钮)?
示例cURL请求(AFAIK这是ES请求可以用POST代替什么 - 但我有外部应用程序只接受GET):
curl -XGET 'localhost:9200/_search?pretty' -H 'Content-Type: application/json' -d'
{
"query": {
"query_string" : {
"default_field" : "content",
"query" : "this AND that OR thus"
}
}
}
'
答案 0 :(得分:0)
根据github的讨论
https://github.com/postmanlabs/postman-app-support/issues/131
这是不可能的。
但是在最后的评论中有一个希望:
将很快推出一个基于Node.js的新网络堆栈,这将有助于我们为GET呼叫添加机构。
答案 1 :(得分:0)
6.5.2 中引入了相同的 issue on GitHub 功能,可以为任何 HTTP 方法发送带有正文的请求。
<块引用>Postman 确实允许使用具有任何方法(包括 GET)的请求设置有效负载(主体) 请更新到最新版本。这是在 6.5.0 版本中发布的
有关详细信息,请参阅 Postman Public Roadmap。