Heim  >  Artikel  >  Backend-Entwicklung  >  curl向api上传图片失败

curl向api上传图片失败

WBOY
WBOYOriginal
2016-08-18 09:16:351001Durchsuche

<code>   <?php function upload_file($url,$filename,$path,$type){
        $data = array(
            'access_token' => '**************',
            'status' => 'img',
            'visible'=>1,
            'pic'=>'@'.realpath($path).";type=".$type.";filename=".$filename
        );
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_POST, true );
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
        curl_setopt($ch, CURLOPT_HEADER, false);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        $return_data = curl_exec($ch);
        curl_close($ch);
        $decode = json_decode($return_data);
        echo $decode->original_pic;       
   }

    if ($_POST) {
        $url = 'https://upload.api.weibo.com/2/statuses/upload.json';
        $path = $_SERVER['DOCUMENT_ROOT'];
        $tmpname = $_FILES['fname']['name'];
        $tmpfile = $_FILES['fname']['tmp_name'];
        $tmpType = $_FILES['fname']['type'];
        upload_file($url,$tmpname,$tmpfile,$tmpType);
        exit;
    }
    echo '<form action="" enctype="multipart/form-data" method="post">
    <input type="file" name="fname" value="Submit">
    </form>';
?>
</code>

页面没有报错信息,而且我打开微博的api显示405错误,不知道是不是api本身的原因。

回复内容:

<code>   <?php function upload_file($url,$filename,$path,$type){
        $data = array(
            'access_token' => '**************',
            'status' => 'img',
            'visible'=>1,
            'pic'=>'@'.realpath($path).";type=".$type.";filename=".$filename
        );
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_POST, true );
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
        curl_setopt($ch, CURLOPT_HEADER, false);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        $return_data = curl_exec($ch);
        curl_close($ch);
        $decode = json_decode($return_data);
        echo $decode->original_pic;       
   }

    if ($_POST) {
        $url = 'https://upload.api.weibo.com/2/statuses/upload.json';
        $path = $_SERVER['DOCUMENT_ROOT'];
        $tmpname = $_FILES['fname']['name'];
        $tmpfile = $_FILES['fname']['tmp_name'];
        $tmpType = $_FILES['fname']['type'];
        upload_file($url,$tmpname,$tmpfile,$tmpType);
        exit;
    }
    echo '<form action="" enctype="multipart/form-data" method="post">
    <input type="file" name="fname" value="Submit">
    </form>';
?>
</code>

页面没有报错信息,而且我打开微博的api显示405错误,不知道是不是api本身的原因。

如果php的版本是5.5以上
用curl上传文件时不能用@+文件路径的方式了.
要用CURLFile来代替, 就算curl_setopt($ch, CURLOPT_SAFE_UPLOAD, false); 也没有用

设置一下协议试试看呢!header("Content-Type:multipart/form-data")

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn