cURL을 사용하여 HTTP POST에서 데이터 매개 변수를 보낼뿐만 아니라 특정 양식 이름의 파일을 업로드하고 싶습니다. 어떻게해야합니까?
HTTP Post 매개 변수 :
userid = 12345 filecomment = 이미지 파일입니다
HTTP 파일 업로드 : 파일 위치 = /home/user1/Desktop/test.jpg 파일의 양식 이름 = 이미지 (PHP 측의 $ _FILES [ ‘image’]에 해당)
cURL 명령의 일부를 다음과 같이 생각했습니다.
curl -d "userid=1&filecomment=This is an image file" --data-binary @"/home/user1/Desktop/test.jpg" localhost/uploader.php
내가 얻는 문제는 다음과 같습니다.
Notice: Undefined index: image in /var/www/uploader.php
문제는 $ _FILES [ ‘image’]를 사용하여 PHP 스크립트에서 파일을 선택하는 것입니다.
cURL 명령을 적절하게 조정하려면 어떻게합니까?
답변
-F
옵션 을 사용해야합니다 .
-F/--form <name=content> Specify HTTP multipart POST data (H)
이 시도:
curl \
-F "userid=1" \
-F "filecomment=This is an image file" \
-F "image=@/home/user1/Desktop/test.jpg" \
localhost/uploader.php
답변
사용자 ID를 경로 변수로 캐치 (권장) :
curl -i -X POST -H "Content-Type: multipart/form-data"
-F "data=@test.mp3" http://mysuperserver/media/1234/upload/
양식의 일부로 사용자 ID를 잡기 :
curl -i -X POST -H "Content-Type: multipart/form-data"
-F "data=@test.mp3;userid=1234" http://mysuperserver/media/upload/
또는:
curl -i -X POST -H "Content-Type: multipart/form-data"
-F "data=@test.mp3" -F "userid=1234" http://mysuperserver/media/upload/
답변
여기 내 해결책이 있습니다. 많은 게시물을 읽었으며 실제로 도움이되었습니다. 마지막으로 cURL과 PHP를 사용하여 작은 파일에 대한 코드를 작성했는데 실제로 유용하다고 생각합니다.
public function postFile()
{
$file_url = "test.txt"; //here is the file route, in this case is on same directory but you can set URL too like "http://examplewebsite.com/test.txt"
$eol = "\r\n"; //default line-break for mime type
$BOUNDARY = md5(time()); //random boundaryid, is a separator for each param on my post curl function
$BODY=""; //init my curl body
$BODY.= '--'.$BOUNDARY. $eol; //start param header
$BODY .= 'Content-Disposition: form-data; name="sometext"' . $eol . $eol; // last Content with 2 $eol, in this case is only 1 content.
$BODY .= "Some Data" . $eol;//param data in this case is a simple post data and 1 $eol for the end of the data
$BODY.= '--'.$BOUNDARY. $eol; // start 2nd param,
$BODY.= 'Content-Disposition: form-data; name="somefile"; filename="test.txt"'. $eol ; //first Content data for post file, remember you only put 1 when you are going to add more Contents, and 2 on the last, to close the Content Instance
$BODY.= 'Content-Type: application/octet-stream' . $eol; //Same before row
$BODY.= 'Content-Transfer-Encoding: base64' . $eol . $eol; // we put the last Content and 2 $eol,
$BODY.= chunk_split(base64_encode(file_get_contents($file_url))) . $eol; // we write the Base64 File Content and the $eol to finish the data,
$BODY.= '--'.$BOUNDARY .'--' . $eol. $eol; // we close the param and the post width "--" and 2 $eol at the end of our boundary header.
$ch = curl_init(); //init curl
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'X_PARAM_TOKEN : 71e2cb8b-42b7-4bf0-b2e8-53fbd2f578f9' //custom header for my api validation you can get it from $_SERVER["HTTP_X_PARAM_TOKEN"] variable
,"Content-Type: multipart/form-data; boundary=".$BOUNDARY) //setting our mime type for make it work on $_FILE variable
);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/1.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0'); //setting our user agent
curl_setopt($ch, CURLOPT_URL, "api.endpoint.post"); //setting our api post url
curl_setopt($ch, CURLOPT_COOKIEJAR, $BOUNDARY.'.txt'); //saving cookies just in case we want
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); // call return content
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 1); navigate the endpoint
curl_setopt($ch, CURLOPT_POST, true); //set as post
curl_setopt($ch, CURLOPT_POSTFIELDS, $BODY); // set our $BODY
$response = curl_exec($ch); // start curl navigation
print_r($response); //print response
}
이것으로 우리는 다음과 같은 var가 게시 된 “api.endpoint.post”에 도착해야합니다. 이 스크립트를 사용하여 쉽게 테스트 할 수 postFile()
있으며 마지막 행 의 함수에서이 디버그를 받아야합니다 .
print_r($response); //print response
public function getPostFile()
{
echo "\n\n_SERVER\n";
echo "<pre>";
print_r($_SERVER['HTTP_X_PARAM_TOKEN']);
echo "/<pre>";
echo "_POST\n";
echo "<pre>";
print_r($_POST['sometext']);
echo "/<pre>";
echo "_FILES\n";
echo "<pre>";
print_r($_FILEST['somefile']);
echo "/<pre>";
}
잘 작동해야하고 더 나은 솔루션 일 수는 있지만 이것이 작동하며 경계 및 다중 부분 / From-Data MIME이 PHP 및 cURL 라이브러리에서 작동하는 방식을 이해하는 데 실제로 도움이됩니다.
답변
CSV와 같은 이진 파일을 업로드하는 경우 아래 형식을 사용하여 파일을 업로드하십시오.
curl -X POST \
'http://localhost:8080/workers' \
-H 'authorization: eyJhbGciOiJIUzI1NiIsInR5cCI6ImFjY2VzcyIsInR5cGUiOiJhY2Nlc3MifQ.eyJ1c2VySWQiOjEsImFjY291bnRJZCI6MSwiaWF0IjoxNTExMzMwMzg5LCJleHAiOjE1MTM5MjIzODksImF1ZCI6Imh0dHBzOi8veW91cmRvbWFpbi5jb20iLCJpc3MiOiJmZWF0aGVycyIsInN1YiI6ImFub255bW91cyJ9.HWk7qJ0uK6SEi8qSeeB6-TGslDlZOTpG51U6kVi8nYc' \
-H 'content-type: application/x-www-form-urlencoded' \
--data-binary '@/home/limitless/Downloads/iRoute Masters - Workers.csv'
답변
여기서 나를 이끌어 낸 문제는 기본 사용자 오류로 판명되었습니다 @
. 파일 경로에 부호를 포함하지 않았 으므로 curl은 내용이 아닌 파일의 경로 / 이름을 게시하고있었습니다. 따라서 Content-Length
값은 테스트 파일의 너비를 감안할 때 예상되는 479가 아닌 8이었습니다.
Content-Length
컬이 파일을 읽고 게시물 때 헤더가 자동으로 계산됩니다.
curl -i -H "Content-Type: application/xml" --data "@test.xml" -v -X POST https://<url>/<uri/
… <내용 길이 : 479 …
앞으로 다른 초보자를 돕기 위해 여기에 게시하십시오.
답변
대안에 관해서는 curl
, 당신은 사용할 수 있습니다 HTTPie 인간을위한 도구 컬-처럼, it’a의 CLI를.
-
설치 지침 : https://github.com/jakubroztocil/httpie#installation
-
그런 다음 다음을 실행하십시오.
http -f POST http://localhost:4040/api/users username=johnsnow photo@images/avatar.jpg HTTP/1.1 200 OK Access-Control-Expose-Headers: X-Frontend Cache-control: no-store Connection: keep-alive Content-Encoding: gzip Content-Length: 89 Content-Type: text/html; charset=windows-1251 Date: Tue, 26 Jun 2018 11:11:55 GMT Pragma: no-cache Server: Apache Vary: Accept-Encoding X-Frontend: front623311 ...
답변
많은 시도 후에이 명령이 저에게 효과적이었습니다.
curl -v -F filename=image.jpg -F upload=@image.jpg http://localhost:8080/api/upload