我目前正在使用以下代码从我的 Twitter 提要中检索最新的推文:
<?php
$username='myUsername';
$format = 'json';
$tweet = json_decode(file_get_contents("http://api.twitter.com/1/statuses/user_timeline/{$username}.{$format}"));
$latestTweet = htmlentities($tweet[0]->text, ENT_QUOTES);
$latestTweet = preg_replace('/http:\/\/([a-z0-9_\.\-\+\&\!\#\~\/\,]+)/i', '<a href="http://$1" target="_blank">http://$1</a>', $latestTweet);
$latestTweet = preg_replace('/@([a-z0-9_]+)/i', '<a href="http://twitter.com/$1" target="_blank">@$1</a>', $latestTweet);
echo '<p class="inset white">'.$latestTweet.'</p>';
?>
在 MAMP 上,这可以完美运行,但是在我的实时站点上,我什么也得不到,甚至没有服务器端错误消息。我在类似的帖子中读到,这可能与allow_url_fopen = On
未在 php.ini 中设置有关,但设置似乎没有任何区别。
尽管 Twitter 可能已经改变了他们关于 API 使用的政策(我不相信他们已经改变了),但我还是不知道可能是什么问题。