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

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);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?