在网站上显示Twitter粉丝数量?

时间:2012-04-09 16:43:00

标签: twitter

我知道您可以使用API​​(https://dev.twitter.com/docs/api/1/get/users/show),但是如何才能将其显示在我的网站上?例如。 “用户名”具有“关注者计数”。

1 个答案:

答案 0 :(得分:1)

你走了:

<?php

$url = "http://api.twitter.com/1/users/show.json?screen_name=jjmpsp&include_entities=true";

$feed = file_get_contents($url);

$twitter_decoded = json_decode($feed);

echo $twitter_decoded->followers_count;

?>