Arkadaşlar merhaba. Aşağıdaki kodlamayı oluşturdum ama tweet atmıyor. Nerede hata yapıyorum bilmiyorum. Bilen arkadaşlar yardım edebilir mi?

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));
?>