使用Curl POST数据

时间:2013-07-05 00:55:06

标签: curl

我无法理解如何使用Curl发布数据如果有人可以请指导我如何发布下面列出的数据我可能能够更好地理解它

POST /play HTTP/1.1
User-Agent: iTunes/10.6 (Macintosh; Intel Mac OS X 10.7.3) AppleWebKit/535.18.5
Content-Length: 163
Content-Type: text/parameters

Content-Location: http://192.168.1.18:3689/airplay.mp4
Start-Position: 0.174051

如果我在Windows上使用Putty进行Telnet并准确发布上面列出的内容它可以正常工作,但我一直在阅读Curl用于基本上做同样的事情,经过多次阅读后我的大脑受伤了。我希望这是足够的信息来获取帮助,如果不是让我知道,我可以尝试提供更多。

1 个答案:

答案 0 :(得分:1)

查看the curl documentation

  • 使用--user-agent发送其他用户代理标头
  • 使用--header添加Content-Type标头(Content-Length自动计算)
  • --header Accept:取消了curl默认发送的接受标头
  • --data-binary可用于设置请求正文。这意味着POST。
  • 最后,添加您要发布的网址。

总而言之,它应该看起来像:

curl -A 'iTunes/10.6 (Macintosh; Intel Mac OS X 10.7.3) AppleWebKit/535.18.5' \
     --header 'Content-Type: text/parameters' \
     --header 'Accept:' \
     --data-binary $(/bin/echo -e \
'Content-Location: http://192.168.1.18:3689/airplay.mp4\r\nStart-Position: 0') \
     http://example.example/play