我有以下html表单:
<form method="post" action="http://api.website.com/upload/index.php" enctype="multipart/form-data">
<input type="text" name="myhandle" />
<input type="file" name="file" />
<input type="submit" value="submit" />
</form>
如果我在Linux上使用Bash,那等效的CURL调用是什么?我试过了:
curl -X POST '-F file=@1.jpg -d myhandle=helloworld' http://api.website.com/upload/index.php
但我一直收到这个错误:
curl: (26) failed creating formpost data
答案 0 :(得分:0)
我想通了
curl --form file=@1.jpg --form myhandle=helloworld http://api.website.com/upload/index.php