在POSTMAN中添加param curl -d

时间:2016-02-17 19:12:11

标签: curl postman

我尝试执行下一个CURL。

如何在POSTMAN中添加param -d

curl https://core.spreedly.com/v1/gateways.json \
  -u 'Ll6fAtoVSTyVMlJEmtpoJV8S:RKOCG5D8D3fZxDSg504D0IxU2XD4Io5VXmyzdCtTivHFTTSy' \
  -H 'Content-Type: application/json' \
  -d '{
        "gateway": {
          "gateway_type": "test"
        }
      }'

PostmanExample

1 个答案:

答案 0 :(得分:4)

-d是POST数据。

您需要将JSON数据添加到请求的正文部分,并将请求方法设置为POST

E.g。

Postman screenshot with JSON body