我正在运行一个 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;
}