0

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

1 回答 1

0

我想到了

curl --form file=@1.jpg --form myhandle=helloworld http://api.website.com/upload/index.php
于 2013-03-07T18:34:35.183 回答