我试图在命令行上使用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数据?
答案 0 :(得分:6)
重定向符号可以通过将它们放在双引号"
中来转义。
而不是说
'<gateway><gateway_type>test</gateway_type></gateway>'
你需要说
"<gateway><gateway_type>test</gateway_type></gateway>"