douxianwu2221 2017-05-30 15:37
浏览 500
已采纳

PHP上的-F Curl选项

I'm trying to run CURL command in PHP to upload image to an API the code mentioned in the doc was:

curl -u 15:tokenkeyiskmzwa8awaa https://api.bukalapak.com/v2/images.json -F file=@product-image.png -X POST

Have tried using mac terminal running this curl command (with proper username and password) and successfully got the result as it is uploading, however was not successfully doing it on PHP. My php code is :

<?php

$data = array('file'=> '@'.$imagePath ); 

// this is an absolute path, give something like D://folder/path/on/my/webserver/image.jpg

$user = '1234567';

$pass = '123456';

$ch = curl_init();

$curl_options[CURLOPT_URL]  = 'https://api.bukalapak.com/v2/images.json';

$curl_options[CURLOPT_CAINFO] = storage_path('app/cacert.pem');

$curl_options[CURLOPT_HEADER] = "Content-Type: application/x-www-form-urlencoded";

$curl_options[CURLOPT_POST] = 1;

$curl_options[CURLOPT_USERPWD] = $user.':'.$pass;

$curl_options[CURLOPT_POSTFIELDS] = http_build_query($data);

curl_setopt_array($ch, $curl_options);

$content = curl_exec($->ch);`

Curl version : 7.47.1 PHP version : 5.6.21 any feedback is very appreciated.

  • 写回答

1条回答 默认 最新

  • doushua7737 2017-05-30 15:49
    关注

    You did not posted the complete script: $curl_options is undefined, storage_path is related to Laravel but there is no import, etc. Something like the following script should work as you expect (I didn't tested it since I don't have an account on this service):

    <?php
    
    $imagePath = 'path/to/your/image.ext';
    $user = 'youruser';
    $pass = 'yourpass';
    
    $file = curl_file_create($imagePath);
    $body = ['file' => $file];
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, 'https://api.bukalapak.com/v2/images.json');
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_USERPWD, $user.':'.$pass);
    curl_setopt($ch, CURLOPT_CAINFO, 'path/to/cacert.pem');
    curl_setopt($ch, CURLOPT_POSTFIELDS, $body);
    $result = curl_exec($ch);
    curl_close($ch);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制