Twitter跟随者计数

Twitter跟随者计数

本文介绍了Twitter跟随者计数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是以纯文本获取跟随者计数的唯一方法是使用cURL?或twitter API提供任何此类选项?

Is the only way to get the follower count number in plain text is using cURL? or does the twitter API provides any such option?

推荐答案

(我的个人资料,只需替换屏幕名称)

https://api.twitter.com/1/users/lookup.json?screen_name=tvdw (my profile, just replace the screen name)

也可以XML格式提供:

Also available as XML: https://api.twitter.com/1/users/lookup.xml?screen_name=tvdw

在PHP中获取:

$data = json_decode(file_get_contents('https://api.twitter.com/1/users/lookup.json?screen_name=tvdw'), true);
echo $data[0]['followers_count'];

这篇关于Twitter跟随者计数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 22:26