我有以下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