大家好!
我想知道是否有可能从你的推特上获得纯文本的关注者数量,而没有某种按钮?
我想做什么:
网站:http://www.sisodevelopment.nl/index2.php
在chrome中观看效果最好;我今天开始构建它,所以twitter和facebook的框只在chrome或safari动画。
注:
我不介意是xml, js还是php
亲切的问候,
你必须创建一个twitter应用程序,之后你将有CONSUMER_KEY, CONSUMER_SECRET,你将在你的应用程序中创建oauth_token和oauth_token_secret。
然后在php中,您可以使用(https://github.com/abraham/twitteroauth/tree/master/twitteroauth):
中包含的twitteroauth.php编写函数$connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, oauth_token, oauth_token_secret);
$content = count($connection->get('followers/ids', array('screen_name' => 'twitter_name'))->ids);
return $content;