pushover + curl --form-string:使用不当

时间:2019-01-17 22:16:11

标签: curl pushover

我正在尝试使用pushover并收到以下错误:

$ /usr/bin/curl -s \
  --form-string "token=mysecrettoken" \
  --form-string "user=mysecret user" \
  --form-string "hola!" \
  https://api.pushover.net/1/messages.json

curl: option --form-string: is badly used here
curl: try 'curl --help' or 'curl --manual' for more information

我在做什么错了?

curl --version                                       
curl 7.47.0 (x86_64-pc-linux-gnu)

1 个答案:

答案 0 :(得分:3)

如果您read the manual,则--form-string方法的用法如下:

--form-string <name=string>

您的错误产生于:

--form-string "hola!"

因为它不包含键的值;只需添加=即可消除此错误,因为它将变成键/值对。

--form-string "hola!="