dquh37673 2015-04-29 09:04
浏览 82
已采纳

cURL PHP API调用不起作用

Trying to make a cURL PHP API call to WEocr, but I can't receive a response by the API. Here's the code I am using:

    $url = 'http://jimbocho.ocrgrid.org/cgi-bin/weocr/submit_ocrad.cgi';
    $header = array('Content-Type: multipart/form-data');
    $fields = array('userfile' => '@' . $_FILES['file']['tmp_name'][0]);
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_POST, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
    $result = json_decode(curl_exec($ch));

I don't know if i'm writing a incorrect syntax of the cURL command.

Thanks in advance.

The error i'm getting:

Sorry!
Received a null image (0byte). See TIPS page. 
  • 写回答

1条回答 默认 最新

  • dt20081409 2015-04-29 09:11
    关注

    I guess your path isn't correct, try this:

    $url = 'http://jimbocho.ocrgrid.org/cgi-bin/weocr/submit_ocrad.cgi';
    $file_name_with_full_path = '/home/example/dir/sample.jpeg';
    $post = array('userfile'=>'@'.$file_name_with_full_path);
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL,$url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
    $result=curl_exec ($ch);
    curl_close ($ch);
    

    Update based on your comments, also try this:

    $file_new = /path/to/your/file.jpg
    $cmd="curl -F userfile=$file_new \ 
          -F outputencoding=\"utf-8\" \
          F outputformat=\"txt\" \ 
          http://maggie.ocrgrid.org/cgi-bin/weocr/ocr_scene.cgi >result.txt"
    $result = shell_exec($cmd);
    print_r($result);
    

    Note: You don't need to set CURLOPT_POST 1 if you're using CURLOPT_POSTFIELDS , curl do that for you automagically. Curl also sets the Content-Type: multipart/form-data, if the post content is an array, that's your case, no need for that too.


    CURLOPT_POSTFIELDS

    The full data to post in a HTTP "POST" operation. To post a file, prepend a filename with @ and use the full path. The filetype can be explicitly specified by following the filename with the type in the format ';type=mimetype'. This parameter can either be passed as a urlencoded string like 'para1=val1&para2=val2&...' or as an array with the field name as key and field data as value. If value is an array, the Content-Type header will be set to multipart/form-data. As of PHP 5.2.0, value must be an array if files are passed to this option with the @ prefix. As of PHP 5.5.0, the @ prefix is deprecated and files can be sent using CURLFile. The @ prefix can be disabled for safe passing of values beginning with @ by setting the CURLOPT_SAFE_UPLOAD option to TRUE.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀