doutao5419 2010-10-03 20:20
浏览 51
已采纳

使用php / curl将图像上传到tumblr时出现问题

I've been trying to create a simple php file that will upload a single image to tumblr. An example is listed here, but it just won't work with images. Here is the code:

<?php
// Authorization info
$tumblr_email    = 'lol@something.com';
$tumblr_password = 'secret';

// Data for new record
$post_type  = 'photo';

//////////////////////THIS DOESN'T WORK/////////////////////////////////
//$filename = "/Applications/MAMP/htdocs/1.jpeg";
//$handle = fopen($filename, "r");
//$post_data = fread($handle, filesize($filename));

//////////////////////NEITHER DOES THIS/////////////////////////////////
//$post_data = "/Applications/MAMP/htdocs/1.jpg";

///////////////////////////////NOR THIS/////////////////////////////////
//$filename = "/Applications/MAMP/htdocs/1.jpeg";
//$post_data = fopen($filename, "r");


// Prepare POST request
$request_data = http_build_query(
    array(
        'email'     => $tumblr_email,
        'password'  => $tumblr_password,
        'type'      => $post_type,
        'data'      => $post_data,
        'generator' => 'testing tumblr API example'
    )
);

// Send the POST request (with cURL)
$c = curl_init('http://www.tumblr.com/api/write');
curl_setopt($c, CURLOPT_POST, true);
curl_setopt($c, CURLOPT_POSTFIELDS, $request_data);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
$result = curl_exec($c);
$status = curl_getinfo($c, CURLINFO_HTTP_CODE);
curl_close($c);

// Check for success
if ($status == 201) {
    echo "Success! The new post ID is $result.
";
} else if ($status == 403) {
    echo 'Bad email or password';
} else {
    echo "Error: $result
";
}

?> 

I am not that familiar with php/curl, so I have no idea what am I doing wrong. This is also written on tumblr.com:

File uploads can be done in a data parameter where specified above. You may use either of the common encoding methods:

1) multipart/form-data method, like a file upload box in a web form. Maximum size:

...10 MB for photos...

This is recommended since there's much less overhead.

2) Normal POST method, in which the file's entire binary contents are URL-encoded like any other POST variable. Maximum size:

...5 MB for photos...

Thanks.

  • 写回答

1条回答 默认 最新

  • douyujun0152 2010-10-05 01:30
    关注

    Try this:

    // Authorization info
    $tumblr_email    = 'lol@something.com';
    $tumblr_password = 'secret';
    
    // Data for new record
    $post_type  = 'photo';
    
    $post_data = "/Applications/MAMP/htdocs/1.jpg";
    
    $request_data = array(
            'email'     => $tumblr_email,
            'password'  => $tumblr_password,
            'type'      => $post_type,
            'data'      => '@'.$post_data,
            'generator' => 'testing tumblr API example'
    );
    
    // Send the POST request (with cURL)
    $c = curl_init('http://www.tumblr.com/api/write');
    curl_setopt($c, CURLOPT_POST, true);
    curl_setopt($c, CURLOPT_POSTFIELDS, $request_data);
    

    You need to pass an array to CURLOPT_POSTFIELDS, and prepend the absolute path to the file with an @. This will make cURL post the data as multipart/form-data.

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

报告相同问题?

悬赏问题

  • ¥15 (标签-UDP|关键词-client)
  • ¥15 关于库卡officelite无法与虚拟机通讯的问题
  • ¥15 qgcomp混合物线性模型分析的代码出现错误:Model aliasing occurred
  • ¥100 已有python代码,要求做成可执行程序,程序设计内容不多
  • ¥15 目标检测项目无法读取视频
  • ¥15 GEO datasets中基因芯片数据仅仅提供了normalized signal如何进行差异分析
  • ¥100 求采集电商背景音乐的方法
  • ¥15 数学建模竞赛求指导帮助
  • ¥15 STM32控制MAX7219问题求解答
  • ¥20 在本地部署CHATRWKV时遇到了AttributeError: 'str' object has no attribute 'requires_grad'