$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 は空の文字列を返します。必要なものが得られない理由はありますか?