我一直在使用twitter API 1.0来轻松获取我的粉丝数量:
$json_string = @file_get_contents('https://api.twitter.com/1/users/lookup.json?screen_name='.$twitterscreenName);
if($json_string)
{
$data = json_decode($json_string, true);
$data = number_format($data[0]['followers_count'], 0, ',', '.');};
现在Twitter已将其API更新为1.1,这已停止工作。
是否有一种简单的方法可以从用户名中获取关注者数量(我目前有超过100,000名关注者是API的问题?)
我问这个是因为我使用了一种方法,结果是5000,我真的不明白。
答案 0 :(得分:1)
您需要先使用注册帐户通过Twitter进行身份验证,然后才能向API发出请求。除此之外,请更改
api.twitter.com/1/
到
api.twitter.com/1.1/
有关身份验证的更多信息,请访问in the API documentation