使用curl将token和json作为查询参数传递

时间:2016-06-06 16:30:33

标签: rest curl

我有一个类似于以下用于查询的网址

http://<ip>:<port>/api/test/computers?token=a124af&criteria={"and":[["name","=","comp_name"]]}

我正在为此编写脚本并使用curl从url下载结果。但我无法让卷毛工作。这是我试过的

curl http://<ip>:<port>/api/test/computers?token=a124af&criteria={"and":[["name","=","comp_name"]]}

- 在后台模式下运行curl http://:/ api / test / computers?token = a124af。

我知道我可以像curl -H“Content-Type:application / json”--data''那样传递json数据。但在这种情况下,我有json和其他数据的混合。我怎样才能实现这一目标?这似乎不起作用

curl -H "Content-Type: application/json" --data "{"and":[["name","=","comp_name"]]}" "http://<ip>:<port>/api/test/computers?token=a124af&criteria="

0 个答案:

没有答案