如何在Windows 7中使用cmd使用cURL发布XML数据?

时间:2013-06-14 11:00:54

标签: xml curl cmd

我试图在命令行上使用curl发布一些xml数据。特别是我试图运行以下命令来连接到计费服务提供商:

curl https://core.spreedly.com/v1/gateways.xml \
    -u 'secretKey' \
    -H 'Content-Type: application/xml' \
    -d '<gateway><gateway_type>test</gateway_type></gateway>'

但是我一直收到以下错误:

< was unexpected at this time.

我应该如何输入我的xml数据?

1 个答案:

答案 0 :(得分:6)

重定向符号可以通过将它们放在双引号"中来转义。

而不是说

'<gateway><gateway_type>test</gateway_type></gateway>'

你需要说

"<gateway><gateway_type>test</gateway_type></gateway>"