Twitter跟随者计数 [英] Twitter follower count number

查看:214
本文介绍了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 (我的个人资料,只需替换屏幕名称)

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

也可以XML格式提供: https: //api.twitter.com/1/users/lookup.xml?screen_name=tvdw

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跟随者计数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆