2014-05-06 142 views
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

回答

0

您使用哪個庫進行OAuth?它是爲你製作的應用程序還是別人的?

如果您可以編輯並檢查Twitter開發人員區域的設置,那麼在對您的應用程序進行身份驗證時,有關使用localhost與您的twitter應用程序的問題可能對您的回調有用。

Twitter oAuth callbackUrl - localhost development

我發現它有用希望在開發過程中的應用程序連接的時候。使用127.0.0.1。