Abraham'ın kütüphanesini kullanıyorum
<?php
require_once("http://www.****.com/wp-content/themes/***/***/***/twitteroauth.php");
define('CONSUMER_KEY', '****');
define('CONSUMER_SECRET', '***');
define('ACCESS_TOKEN', '***');
define('ACCESS_TOKEN_SECRET', '***');
$Connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, ACCESS_TOKEN_SECRET);
$status = "www.***.com";
$Connection->post('statuses/update', array('status' => $status));
?>

Sadece web sitem üzerinden tweet atmaya çalışıyorum ama olmuyor.