Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I tweet in twitter from my website? I am using a PHP script. Whatever tweets I send from my website should update my twitter account. I use the following code, but it is not updating in my twitter account:

// 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';
}

This script is returning a success message, but when I check my twitter account no tweets are found.

What could be the problem?

share|improve this question

4 Answers

You are trying to send tweets using Basic Authentication (user name and password). This is no longer allowed. There are many examples of this online, but Twitter turned it off last August. You now have to use OAuth to do authentication. You can find a step by step tutorial on how to send tweets with PHP and OAuth here:

http://140dev.com/twitter-api-programming-tutorials/hello-twitter-oauth-php/

share|improve this answer
Thanks..the link help me a lot.. – riad May 10 '11 at 13:25
that link is now spam – Rid Iculous Apr 2 at 2:59

A google using keywords like 'twitter php' would throw out lots of links.

Some links useful are:

http://dev.twitter.com/pages/libraries#php

http://code.google.com/p/php-twitter/

You have not added your script yet.

share|improve this answer
sorry all, i had forgot to highlight the code. pls review my code – Senthil Jan 12 '11 at 5:53

This article shows comprehensively on how to use OAuth and twitteroauth files to tweet via PHP. http://www.sensiblebook.com/send-tweets-to-your-twitter-account-via-php.html

share|improve this answer
1  
That link is broken. – Synchro Aug 2 '12 at 17:43
1  
Link works fine for me. – petersmileyface Jan 17 at 3:14
@Synchro link appears to be fixed, would be nice to remove the downvote if was you – tim peterson Feb 20 at 1:08
Wasn't me - I wouldn't downvote for a broken link, and it works now. – Synchro Feb 21 at 10:12

to tweet using twitter you will need a post_authenticity_token along with your username and password. this token can be obtained from your profile page by fetching it using curl (after you login with curl). i experimented with curl and was able to tweet using curl. you can find my code at (though it is in bash script, it can be ported to php easily coz they both use curl) http://pastebin.com/a5eBcEeP .

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.