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