-1

我正在尝试获取我的客户最新的推文。在谷歌搜索后,我得到了一些代码。不幸的是,代码在本地主机中工作,但在托管服务器中不工作。它的说法是找不到服务器。我正在发布代码快照..

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

            ?> 

请帮帮我。如果有人有更好的建议,请帮助我。

4

2 回答 2

3

使用Twitter 搜索 API,它真的很棒。它是 JSON。[+1]

$tweets = json_decode(file_get_contents("http://search.twitter.com/search.json?q=php&rpp=5&include_entities=true&result_type=mixed"));

foreach($tweets->results as $t){

  echo "Username: {$t->from_user_name}";
  echo "Tweet: {$t->text}" . PHP_EOL;

} 

请阅读文档以了解如何使用并查看示例。

于 2012-09-10T15:29:05.067 回答
0

更改链接中的用户名

    <?php
      $json = file_get_contents("http://twitter.com/status/user_timeline/username.json?count=10", true); //getting the file content
      $decode = json_decode($json, true); //getting the file content as array
      print_r($decode);
    ?>
于 2012-09-10T15:43:49.100 回答