簡體   English   中英

對話框IBM-Curl-PHP Laravel

[英]Dialog IBM - Curl - PHP Laravel

沃森有下面的代碼:

 curl -u "{username}":"{password}" 
  -X POST
  --form file=@template.xml
  --form name=templateName
  "https://gateway.watsonplatform.net/dialog/api/v1/dialogs"

我有:

$ch = curl_init();
    $data['name'] = $this->post['name'].";type:form";
    $data['file'] = $this->getCurlValue($this->post['file'], $this->post['nombre']);

    curl_setopt($ch, CURLOPT_URL, $this->url.$this->metodo);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);
    curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, true);
    curl_setopt($ch, CURLOPT_USERPWD, "{$this->user}:{$this->pass}");

    if(count($this->post) > 0){
        //curl_setopt($ch, CURLOPT_PUT, 1);
        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    }
    $output = curl_exec($ch);
    curl_close($ch);
    json_decode($output);

$ this-> post有...

$data = Request::only('name', 'file');

我只能作為答案:{}

我想念的是什么?

謝謝大家!...第一次嘗試發送帶有curl的上傳文件:c

它比我想象的簡單。

商店:

$data = Request::only('name', 'file');

$nombre = time().".".Request::file('file')->getClientOriginalExtension();
Request::file('file')->move(base_path() . '/public/dialogos/', $nombre);

$data['path'] = base_path() . '/public/dialogos/'.$nombre;
$data['file'] = $_FILES['file'];

卷曲:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->url.$this->metodo);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_USERPWD, "{$this->user}:{$this->pass}");

if(count($this->post) > 0){
    $datos['name'] = $this->post['name'];
    $datos['file'] = $this->getCurlValue($this->post['file'], $this->post['path']);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $datos);
}
$output = curl_exec($ch);
curl_close($ch);
return json_decode($output);

getCurlValue($ file,$ path);

if (function_exists('curl_file_create')) {
    return curl_file_create($path, $file['type'], $file['name']);
}
$value = "@{$path};filename=" . $file['name'];
$value .= ';type=' . $file['type'];

return $value;

愚蠢的味精說我需要PUT或DELETE方法...哈哈

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM