Дайте структуру твитам в формате JSON

У меня есть следующий код, который отображает твиты в JSON отформатировать в HTML стр. мне бы хотелось отображать эти твиты в более презентабельной манере. Может ли кто-нибудь предоставить мне какие-либо варианты?

session_start();
require_once("twitteroauth-master/twitteroauth/twitteroauth.php"); //Path to twitteroauth library

$twitteruser = "massa_jes";
$notweets = 1;

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);

$resArr = json_encode($tweets); //decodes the json string to an array
var_dump($resArr);

-1

Решение

Попробуйте следующее

$tweetsArr = json_decode($tweets,true); //decodes the json string to an array
foreach($tweetsArr as $tweet) {
echo $tweet['text']."<br />";
...
...
}
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]