請求後端API時, 後端接收的資料格式如下:
<code class="bash">请求方法: post 请求body: //part1,content-type:application/json { "description": "desdes" } //part2,content-type: octet-stream { "product_img": octet-stream file, "config_img ": octet-stream file, "dopm": octet-stream file } </code>
從API要求的資料看,php curl
發送post資料時, 構造的post請求體要有兩個content-type
一個為普通的資料Content-Type: application/json
一個要求為content-type: octet-stream
, 二進位流, 主要是圖片及其他格式檔案轉換成流的形式, 傳輸到API進行保存
平常都是使用curl_setopt($curl, CURLOPT_POSTFIELDS, $body);
來設定請求body, 那麼現在這樣的格式要怎麼建構請求體
<code class="php"> $header = NULL; $body = []; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $body); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'POST'); if(!is_null($header)){ curl_setopt($curl, CURLOPT_HTTPHEADER, $header); } curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_TIMEOUT, 10); $curl_get = curl_exec($curl); </code>
請求後端API時, 後端接收的資料格式如下:
<code class="bash">请求方法: post 请求body: //part1,content-type:application/json { "description": "desdes" } //part2,content-type: octet-stream { "product_img": octet-stream file, "config_img ": octet-stream file, "dopm": octet-stream file } </code>
從API要求的資料看,php curl
發送post資料時, 構造的post請求體要有兩個content-type
一個為普通的資料Content-Type: application/json
一個要求為content-type: octet-stream
, 二進位流, 主要是圖片及其他格式檔案轉換成流的形式, 傳輸到API進行保存
平常都是使用curl_setopt($curl, CURLOPT_POSTFIELDS, $body);
來設定請求body, 那麼現在這樣的格式要怎麼建構請求體
<code class="php"> $header = NULL; $body = []; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $body); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'POST'); if(!is_null($header)){ curl_setopt($curl, CURLOPT_HTTPHEADER, $header); } curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_TIMEOUT, 10); $curl_get = curl_exec($curl); </code>
確實是用CURLFile
來將文件轉換為流形式, 只是上面我在處理時, 請求超時時間太短, 導致數據流還沒發送完成, 該tcp
鏈接就斷了,
建議在一般CURL請求API時, 逾時時間設定為10秒。 而上傳到文件耗時太多時, 增大連結時間與超時時間
CURLOPT_FOLLOWLOCATION
, CURLOPT_TIMEOUT
<code>$header = NULL; $body = [ 'img' => new CURLFile('imagepath', 'octet-stream', 'file_name') ]; $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_POSTFIELDS, $body); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'POST'); if(!is_null($header)){ curl_setopt($curl, CURLOPT_HTTPHEADER, $header); } //设置链接超时时间为1分钟 curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_TIMEOUT, 60); $curl_get = curl_exec($curl); </code>
-Content-Type: application/json: json_encode
-content-type: octet-stream:
php>5.6
<code>$file_data = array('image' => new \CURLFile(realpath($source)));</code>
php
<code>$file_data = array('image'=> '@' . realpath($source));//<=5.5</code>