Şimdiye kadar ben php ile twitter API thr twitter profil bg görüntüyü güncellemek için çalışıyor ... ve başarı olmadan edilmiştir
Many examples on the web, including this one:
http://stackoverflow.com/questions/1483163/updating-twitter-background-via-api
and this one
http://stackoverflow.com/questions/1485136/twitter-background-upload-with-api-and-multi-form-data
do not work at all, most ppl throw out answers without actually testing the code.
Ben doğrudan bu iş olacak, twitter.com thr html formuna resim gönderin bulundu:
<form action="http://twitter.com/account/update_profile_background_image.xml" enctype="multipart/form-data" method="post">
File: <input type="file" name="image" /><br/>
<input type="submit" value="upload bg">
</form>
(Tarayıcı twitter hesabı kullanıcı adı ve şifre isteyecektir rağmen)
Ben php ile aynı işlem thr gitmek istiyorsanız Ancak, başarısız
<?php
if( isset($_POST["submit"]) ) {
$target_path = "";
$target_path = $target_path . basename( $_FILES['myfile']['name']);
if(move_uploaded_file($_FILES['myfile']['tmp_name'], $target_path)) {
// "The file ". basename( $_FILES['myfile']['name']). " has been uploaded<br/>";
} else{
// "There was an error uploading the file, please try again!<br/>";
}
$ch = curl_init('http://twitter.com/account/update_profile_background_image.xml');
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_USERPWD, $_POST['name'] . ':' . $_POST['pass']);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));
curl_setopt($ch, CURLOPT_TIMEOUT, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, array('image' => base64_encode(file_get_contents($target_path))));
$rsp = curl_exec($ch);
echo "<pre>" . str_replace("<", "<", $rsp) . "</pre>";
}
?>
<form enctype="multipart/form-data" method="post">
<input type="hidden" name="submit" value="1"/>
name:<input type="text" name="name" value=""/><br/>
pass:<input type="password" name="pass" value=""/><br/>
File: <input type="file" name="myfile" /><br/>
<input type="submit" value="upload bg">
</form>
Bu kodun garip şey .. başarıyla twitter XML, WITHOUT profil arka plan resmi güncelleme olan döner olmasıdır. Yani sonunda yine başarısız olur.
Bu okuma için çok teşekkürler. Eğer yardımcı olabilir eğer büyük olacak. Nazik cevaplar, çok çok teşekkürler dışarı atmadan önce ilk kodu test edin.