Unix cURL POST 使用文件中的内容到特定变量
我已经搜索过这个答案,但没有找到任何有效或完全符合我的问题的答案。
使用 Unix cURL,我需要将键/值对发布到服务器。密钥将是“MACs”,换行符分隔的 MAC 地址文件的内容将是此 POST 的 VALUE。
我尝试过:
curl -d @filename http://targetaddress.com
,但是当目标接收传入的 POST,POST var 为空。 (PHP 正在接收)。
我在这个网站上看到过其他形式的curl,使用--url-encode
,这表明它不是我系统上curl的有效选项...
你如何发布a的内容使用 UNIX cURL 将文件作为 POST 中特定键的值?
I've searched for this answer but not found anything that works or that completely matches my problem.
Using Unix cURL, I need to POST a key/val pair to a server. The key will be "MACs", and the contents of a file of newline separated MAC addresses will be the VALUE for this POST.
I've tried:
curl -d @filename http://targetaddress.com
, but when the target receives the incoming POST, the POST var is empty. (PHP is receiving).
I've seen other forms of curl mentioned on this site, using --url-encode
which says it is not a valid option for curl on my system...
How do you POST the contents of a file as a value to a specific key in a POST using UNIX cURL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据curl手册页,-d与--data-ascii相同。要将数据作为二进制发布,请使用 --data-binary 并使用 url 编码发布,请使用 --data-urlencode。因此,由于您的文件不是 URL 编码,如果您想发送 URL 编码,请使用:
如果您的文件包含类似以下内容:
这将导致收到类似以下内容的 POST 请求:
如果您想添加名称,您可以使用多部分形式编码某些内容喜欢:
或
According to curl man page -d is the same as --data-ascii. To post the data as binary use --data-binary and to post with url encoding use --data-urlencode. So as your file is not URL encoded if you want to send it URL encoded use:
If you file contains something like:
this will result in a POST request received something like:
If you want to add a name you can use multipart form encoding something like:
or