Ben stat tek bir görüntü yüklemek basit bir php dosyası oluşturmak için çalışıyorum. Bir örnek here listelenir, ama sadece görüntüleri ile çalışmaz. İşte kod:
<?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.\n";
} else if ($status == 403) {
echo 'Bad email or password';
} else {
echo "Error: $result\n";
}
?>
Php / curl aşina değilim, ben yanlış yapıyorum hiçbir fikrim yok. Bu da tumblr.com yazılır:
İçerik yüklemeler yukarıda belirtilen veri parametresi olarak yapılabilir. Sen ortak kodlama yöntemlerden birini kullanabilirsiniz:
Bir web formda bir dosya yükleme kutusu gibi 1) multipart / form-data yöntemi. Maksimum boyut:
... Fotoğraflar için 10 MB ...
Çok daha az yükü var çünkü bu tavsiye edilir.
Dosyanın tamamı ikili içeriği URL-kodlanmış başka POST değişkeni gibi olan 2) Normal POST yöntemi. Maksimum boyut:
... Fotoğraflar için 5 MB ...
Teşekkürler.