<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" /》 <input type="submit" 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" /》 <input type="submit" value="Submit" /> </form>'; ?> </code>
페이지에 오류 메시지도 없고, 웨이보 API를 열면 405 오류가 뜹니다. API 자체인지는 모르겠습니다.
PHP 버전이 5.5 이상인 경우
curl로 파일을 업로드할 때 @+파일 경로를 사용할 수 없습니다.
curl_setopt($ch, CURLOPT_SAFE_UPLOAD, false);
프로토콜을 설정하고 사용해 보세요! header("Content-Type:multipart/form-data")