是否有可能获得当前的Twitter粉丝总数?多久一次?

时间:2011-05-23 13:40:27

标签: twitter

这是事情。我想建立一个计数器,显示用户的Twitter粉丝总数。当追随者的数量达到正好1,000,000时,会喜欢做点什么。如果有api这样做,我多久可以调用一次api。

感谢。

2 个答案:

答案 0 :(得分:1)

是的,您可以使用users/show来获取此信息。您会发现它是一个名为followers_count的属性:

"followers_count": 160752,

答案 1 :(得分:1)

您好 抱歉,我不太了解PHP,而且根本不知道JQuery,但是,这是我在C#中所做的...希望它有所帮助;)

// Launch the request to obtain the number of followers of the user
WebRequest request = HttpWebRequest.Create("http://twitter.com/users/show.xml?screen_name=[username]");

using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
{
StreamReader streamReader = new StreamReader(response.GetResponseStream());

// Load response in an XML Document
XmlDocument doc = new XmlDocument();
doc.LoadXml(streamReader.ReadToEnd());

// Parse the node we're interested in...
XmlNode node = doc.DocumentElement.SelectSingleNode("followers_count");

// ... and affect the number of followers
labelScore.Text = node.InnerText;
}