我编写了一个使用 HTTP PUT 方法上传文件的服务。
Web 浏览器不支持 PUT,所以我需要一种测试方法。它作为一个从浏览器点击它的 POST 非常有用。
更新:这是有效的。我试过海报,但它与使用提琴手有同样的问题。您必须知道如何构建请求。curl 解决了这个问题。
curl -X PUT "localhost:8080/urlstuffhere" -F "file=@filename" -b "JSESSIONID=cookievalue"
在我看来,此类测试的最佳工具是curl。它的--upload-file
选项通过 上传文件PUT
,这正是您想要的(并且它可以做更多的事情,比如修改 HTTP 标头,以防您需要它):
curl http://myservice --upload-file file.txt
curl -X PUT -T "/path/to/file" "http://myputserver.com/puturl.tmp"
如果您使用的是 PHP,您可以使用以下代码测试您的 PUT 上传:
#Initiate cURL object
$curl = curl_init();
#Set your URL
curl_setopt($curl, CURLOPT_URL, 'https://local.simbiat.ru');
#Indicate, that you plan to upload a file
curl_setopt($curl, CURLOPT_UPLOAD, true);
#Indicate your protocol
curl_setopt($curl, CURLOPT_PROTOCOLS, CURLPROTO_HTTPS);
#Set flags for transfer
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_BINARYTRANSFER, 1);
#Disable header (optional)
curl_setopt($curl, CURLOPT_HEADER, false);
#Set HTTP method to PUT
curl_setopt($curl, CURLOPT_PUT, 1);
#Indicate the file you want to upload
curl_setopt($curl, CURLOPT_INFILE, fopen('path_to_file', 'rb'));
#Indicate the size of the file (it does not look like this is mandatory, though)
curl_setopt($curl, CURLOPT_INFILESIZE, filesize('path_to_file'));
#Only use below option on TEST environment if you have a self-signed certificate!!! On production this can cause security issues
#curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
#Execute
curl_exec($curl);
对于curl
,如何使用-d
开关?喜欢:curl -X PUT "localhost:8080/urlstuffhere" -d "@filename"
?