Twitter不与localhost PHP连接

时间:2014-05-06 14:45:52

标签: php twitter xampp localhost twitter-oauth

<?
// 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 ..

1 个答案:

答案 0 :(得分:0)

您使用哪个库进行OAuth?它适用于您制作的应用程序还是其他应用程序?

如果您可以编辑和检查Twitter开发人员区域中的设置,那么在验证您的应用时,关于在Twitter应用程序中使用localhost的问题可能对您的回调有用。

Twitter oAuth callbackUrl - localhost development

我发现在开发过程中想要连接应用程序时很有用。使用127.0.0.1。