我正在尝试获取我的客户最新的推文。在谷歌搜索后,我得到了一些代码。不幸的是,代码在本地主机中工作,但在托管服务器中不工作。它的说法是找不到服务器。我正在发布代码快照..
<?php
function getTwitterStatus($userid){
$url = "http://twitter.com/statuses/user_timeline/$userid.xml?count=1";
$xml = simplexml_load_file($url) or die("could not connect");
foreach($xml->status as $status){
$text = $status->text;
}
echo $text;
}
//my user id AmitEducation
getTwitterStatus("AmitEducation");
?>
请帮帮我。如果有人有更好的建议,请帮助我。