我通過用戶名和密碼更新Twitter狀態時遇到問題。使用CURL更新Twitter狀態
這裏是代碼爲:
$username = 'username';
$password = 'password';
$message = 'Testing';
$url = 'http://twitter.com/statuses/update.xml';
$curl_handle = curl_init();
curl_setopt($curl_handle, CURLOPT_URL, $url);
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); //basic authentication
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);
echo $buffer;
這不是隻有一個用戶,這樣我可以不使用OAuth(使用消費密鑰和其他標記方式)。我已經試過這個:http://www.1stwebdesigner.com/tutorials/how-to-update-twitter-using-php-and-twitter-api/但我不能傳遞多個用戶的用戶名和密碼來更新多個twitter狀態。
請幫我解決這個問題。
當我已經使用這個代碼捲曲,然後它會顯示錯誤:「不支持基本身份驗證」,讓你能幫助我在此。 – Anjara 2011-01-05 07:37:26