0

このチュートリアルに従って:

$twitteruser = "twitterusername";
$notweets = 3;
$consumerkey = "12345";
$consumersecret = "123456789";
$accesstoken = "123456789";
$accesstokensecret = "12345";

function getConnectionWithAccessToken($cons_key, $cons_secret, $oauth_token, $oauth_token_secret) {
  $connection = new TwitterOAuth($cons_key, $cons_secret, $oauth_token, $oauth_token_secret);
  return $connection;
}

$connection = getConnectionWithAccessToken($consumerkey, $consumersecret, $accesstoken, $accesstokensecret);

$tweets = $connection->get("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=".$twitteruser."&count=".$notweets);

echo json_encode($tweets);
?>

json_encode($tweets);statuses」情報からどのように抽出できますか?

4

1 に答える 1

2

なぜjson_encode()ここを使っているのですか?

Twitter からの応答は JSON 文字列です。これを使用json_decode()してオブジェクト/配列にデコードし、必要な値を出力する必要があります。

$tweetArray = json_decode($tweets, TRUE); // or json_decode($tweets); for an object

foreach($tweetArray as $value) {
    // do the printing ...
}
于 2013-09-06T15:07:55.477 に答える