4

我正在尝试在命令行上使用 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 数据?

4

1 回答 1

6

重定向符号可以通过将它们放在双引号内进行转义"

而不是说

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

你需要说

"<gateway><gateway_type>test</gateway_type></gateway>"
于 2013-06-14T12:59:19.600 回答