PHP kullanarak Twitter'da Tweet nasıl

0 Cevap php

Nasıl benim web sitesinden twitter tweet olabilir? Ben bir PHP komut dosyası kullanıyorum. Ben web sitesinden göndermek ne olursa olsun benim tweets twitter hesabı güncellemeniz gerekmektedir. Ben aşağıdaki kodu kullanabilirsiniz, ama benim twitter hesabında güncelleme değildir:

// Set username and password
$username='myusername';
$password='*********';
// The message you want to send
$message = 'Nice to c all again.Have a nice day..';
// The twitter API address
$url='http://twitter.com/statuses/update.xml';
// Alternative JSON version
// $url = 'http://twitter.com/statuses/update.json';
// Set up and execute the curl process
$curl_handle = curl_init();
curl_setopt($curl_handle, CURLOPT_URL, $url);
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_POST,1);
curl_setopt($curl_handle, CURLOPT_POSTFIELDS,"status=".$message);
curl_setopt($curl_handle, CURLOPT_USERPWD,"$username:$password");
$buffer = curl_exec($curl_handle);
curl_close($curl_handle);
// check for success or failure
if (empty($buffer)) {
    echo 'Try again';
} else {
    echo 'success';
}

Bu script bir başarı mesajı dönen, ama benim twitter hesabını kontrol ederken hiçbir tweets bulundu.

Ne sorun olabilir?

0 Cevap