2
我知道你可以使用API(https://dev.twitter.com/docs/api/1/get/users/show),但是我怎樣才能讓它出現在我的網站上呢?例如。 '用戶名'具有'追隨者計數'。顯示Twitter關注者網站上的計數?
我知道你可以使用API(https://dev.twitter.com/docs/api/1/get/users/show),但是我怎樣才能讓它出現在我的網站上呢?例如。 '用戶名'具有'追隨者計數'。顯示Twitter關注者網站上的計數?
在這裏你去:
<?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;
?>