PHP Twitter粉丝图片列表
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Twitter粉丝图片列表相关的知识,希望对你有一定的参考价值。
<?php
//replace $options['twitter'] with the twitter Username you want to use.
?>
<?php
$xmlfollowersUrl = 'http://api.twitter.com/1/statuses/followers/'.$options['twitter'].'.xml';
if (file_exists(WP_CONTENT_DIR.'/uploads/twitter_followers.xml')) {
$data = unserialize(file_get_contents(WP_CONTENT_DIR.'/uploads/twitter_followers.xml'));
if ($data['timestamp'] > time() - 120 * 60) {
$twitter_followers = $data['twitter_result'];
}
}
if (!$twitter_followers) { // cache doesn't exist or is older than 10 mins
$twitter_followers = file_get_contents($xmlfollowersUrl); // or whatever your API call is
$data = array ('twitter_followers' => $twitter_followers, 'timestamp' => time());
file_put_contents(WP_CONTENT_DIR.'/uploads/twitter_followers.xml', serialize($data));
}
$dom = new DOMDocument;
$s = simplexml_load_string($twitter_followers);
$count = 0;
echo '<ul class="seguidores">';
foreach($s->user as $follower):
if(++$count > 50){
break;
}
echo '<li><a target="_blank" href="http://www.twitter.com/'.$follower->screen_name.'"><img width="32" height="32" src="'.$follower->profile_image_url.'" alt="'.$follower->name.'" title="'.$follower->name.': '.$follower->status->text.'"/></a></li>';
endforeach;
echo '</ul>';
?>
以上是关于PHP Twitter粉丝图片列表的主要内容,如果未能解决你的问题,请参考以下文章
PHP 获取WordPress中的Twitter粉丝数量
PHP 获取Twitter粉丝的数量
Twitter关注者图片列表
通过 Tweepy 获取 Twitter 中的所有关注者 ID
python 对于给定屏幕名称的Twitter粉丝的随机样本
马斯克开会当场解雇Twitter首席工程师:我有1亿多粉丝,他却说公众对我失去兴趣...