0
<?
// here we want to send the article to twitter
require_once('twitteroauth.php');
// Twitter Connection Data
$tConsumerKey = 'xxxx';
$tConsumerSecret = 'xxxx';
$tAccessToken = 'xxxx';
$tAccessTokenSecret = 'xxxx';
// start connection
$tweet = new TwitterOAuth($tConsumerKey, $tConsumerSecret, $tAccessToken, $tAccessTokenSecret);
// the message
$message = 'Auto Tweet via PHP ...';
// send to twitter
$tweet->post('statuses/update', array('status' => $message));
?>
這是我的代碼..它不發送帖子推文。是關於localhost還是別的? 我在Windows7上使用xampp ..Twitter不與本地主機連接PHP