twitter api问题

时间:2011-03-24 22:03:24

标签: php json api twitter

我已经搜索了整个网络,找到了NICE和简单方法来获取推特状态,现在我发现了一个......但它不起作用

我试试这个 http://tareq.wedevs.com/2009/05/playing-with-twitter-json-using-php/

但它说

“注意:使用未定义的常量文本 - 在第8行的/Applications/MAMP/htdocs/test/twitterWidget/twitter.php中假定为'text'

iPad2模拟器/ w Css3,Jquery和HTML5 http://t.co/GaNMTbg来自@altryne“

我需要做什么?

1 个答案:

答案 0 :(得分:0)

<?php
$json = file_get_contents("http://twitter.com/status/user_timeline/tareq_cse.json?count=10", true);
$decode = json_decode($json, true);

echo "<pre>";
$count = count($decode); //counting the number of status
for($i=0;$i<$count;$i++){
echo $decode[$i]['text']."<br>"; // in the original code there was $decode[$i][text] which is not correct
}
echo "</pre>";
?>

您必须将第8行中的 text 索引放入qoutes。我在这里发布了更正后的版本。

该站点上的最后一个代码示例块在其所有行中也具有相同的错误。您必须将字符串数组索引放入引号以避免出现通知。