Twitter Feed没有提供代码?

时间:2012-04-20 13:13:24

标签: php javascript twitter

我想知道为什么下面的代码我试图用来提取最新推文的推文,但是没有用?

CODE:

<?
    $username = "readitforward";
    $limit = 5;
    $feed = 'http://twitter.com/statuses/user_timeline.rss?screen_name='.$username.'&count='.$limit;
    $tweets = file_get_contents($feed);

        $tweets = str_replace("&", "&", $tweets);   
        $tweets = str_replace("<", "<", $tweets);
        $tweets = str_replace(">", ">", $tweets);
        $tweet = explode("<item>", $tweets);
    $tcount = count($tweet) - 1;

for ($i = 1; $i <= $tcount; $i++) {
    $endtweet = explode("</item>", $tweet[$i]);
    $title = explode("<title>", $endtweet[0]);
    $content = explode("</title>", $title[1]);
        $content[0] = str_replace("&#8211;", "&mdash;", $content[0]);

        $content[0] = preg_replace("/(http:\/\/|(www\.))(([^\s<]{4,68})[^\s<]*)/", '<a href="http://$2$3" target="_blank">$1$2$4</a>', $content[0]);
        $content[0] = str_replace("$username: ", "", $content[0]);
        $content[0] = preg_replace("/@(\w+)/", "<a href=\"http://www.twitter.com/\\1\" target=\"_blank\">@\\1</a>", $content[0]);
        $content[0] = preg_replace("/#(\w+)/", "<a href=\"http://search.twitter.com/search?q=\\1\" target=\"_blank\">#\\1</a>", $content[0]);
    $mytweets[] = $content[0];
}

while (list(, $v) = each($mytweets)) {
    $tweetout .= "<div>$v</div>\n";
}
?>

输出错误:

Warning: file_get_contents() [function.file-get-contents]: http:// wrapper is disabled in the server configuration by allow_url_fopen=0 in /data/24/1/0/139/1815302/user/1967139/htdocs/RIF/wp-content/themes/crown_readitforward2012/sidebar.php on line 93

Warning: file_get_contents(http://twitter.com/statuses/user_timeline.rss?screen_name=readitforward&count=5) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /data/24/1/0/139/1815302/user/1967139/htdocs/RIF/wp-content/themes/crown_readitforward2012/sidebar.php on line 93

Warning: Variable passed to each() is not an array or object in /data/24/1/0/139/1815302/user/1967139/htdocs/RIF/wp-content/themes/crown_readitforward2012/sidebar.php on line 114

第93行: $tweets = file_get_contents($feed);

第114行: while (list(, $v) = each($mytweets)) {

我在这里做错了什么???

3 个答案:

答案 0 :(得分:2)

查看Twitter API更新。

将您的$feed变量更改为:

$feed = 'http://api.twitter.com/1/statuses/user_timeline.rss?screen_name='.$username.'&count='.$limit;

答案 1 :(得分:1)

allow_url_fopen已关闭,因此您必须以其他方式获取远程文件。

http://php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen

您可以使用cURL或其他php扩展。

http://php.net/manual/en/curl.examples-basic.php

第二次错误检查是否(is_array($ mytweets))..在进行循环之前。

答案 2 :(得分:1)

打开php.ini并启用allow_url_fopenini_set()无法完成此操作。

或者,使用不同的请求URL的方法,例如cURL。