推特 API 问题

发布于 2024-10-26 19:54:54 字数 480 浏览 0 评论 0原文

我已经在整个网络上搜索了 af 很好的简单方法来获取 Twitter 状态,现在我找到了一个..但它不起作用

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

但它说

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

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

我需要做什么?

i have search the whole net for finding af NICE and easy and simple method to get twitter status and now i found one.. but it dont work

i try this
http://tareq.wedevs.com/2009/05/playing-with-twitter-json-using-php/

but it says

"Notice: Use of undefined constant text - assumed 'text' in /Applications/MAMP/htdocs/test/twitterWidget/twitter.php on line 8

iPad2 simulator /w Css3, Jquery and HTML5 http://t.co/GaNMTbg via @altryne"

what do i need to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

闻呓 2024-11-02 19:54:54
<?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 中。我已经在这里发布了更正后的版本。

该站点上的最后一个代码示例块的所有行也都存在相同的错误。您必须将字符串数组索引放入引号中以避免引起注意。

<?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>";
?>

You have to put that text index in the 8th row into qoutes. I've posted here the corrected version.

The last code example block on that site also has the same error throughout all its lines. You must put string array indexes into quotation marks to avoid notices.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文