$ch = curl_init("http://api.twitter.com/1/statuses/user_timeline/nafhameducation.json");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$latest_tweet = curl_exec($ch);
$latest_tweet_id = $latest_tweet[0]->id_str;
curl_close($ch);
我正在使用此代码获取时间线上最新推文的 ID,但是 $latest_tweet_id 返回一个空字符串,知道为什么它没有得到我需要的东西吗?