1

我正在运行一个 php 网站,并希望从我的公司 Twitter 提要中提取最新的推文。以下是我拥有的代码,但它目前无法正常工作。我做错了什么?我是否需要更改 Twitter 中的任何设置才能使此方法起作用?

$responseJson = file_get_contents('http://api.twitter.com/1/statuses/user_timeline.json?screen_name=take_me_fishing&include_rts=1&count=1');

if ($responseJson) 
{
  $response = json_decode($responseJson);                   
  $status = $response->text;
}
4

1 回答 1

0

的值$response是一个对象数组。由于您只检索了最后一项,因此您需要访问此数组中的第一项。要访问第一个元素的“文本”属性,请按如下方式更改代码:

if ($responseJson) {
  $response = json_decode($responseJson);
  $status   = $response[0]->text;
}

print $status; // The tweet.

请注意,当您print_r($response)看到以下结构时:

Array
(
  [0] => stdClass Object
    (
      [created_at] => Fri Jun 22 15:00:34 +0000 2012
      [id] => 216183907643699200
      [id_str] => 216183907643699200
      [text] => Help us determine the Top 8 State Parks for boating and fishing:
                http://t.co/SQEzWpru #takemefishing
      ... rest of the tweet object ...
于 2012-06-22T16:00:54.210 回答