yo utilizo este codigo con su libreria
Código PHP:
Ver original$consumerKey = 'xxxxxxxxxxxxx';
$consumerSecret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
$oAuthToken = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
$oAuthSecret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx';
// incluimos la librería para usar la API OAuth
require_once('twitteroauth.php');
$tweet = new TwitterOAuth($consumerKey, $consumerSecret, $oAuthToken, $oAuthSecret);
# aqui tu lógica para recoger el contenido del tweet, ya sea de tu bbdd, feed, rss o fichero
$mensajetweet= "tweet ".$link;
$tweet->post('statuses/update', array('status' => $mensajetweet));
Espero que sea lo que buscas