如何在php api中获得男性/女性粉丝的百分比?

时间:2014-10-16 12:07:22

标签: twitter

我需要使用Twitter API获取推特中男性/女性粉丝的百分比。我能够获得全部粉丝,但无法获得男性/女性粉丝的百分比。

$obj = new TwitterOAuth($keys['AppKey'], $keys['SecretKey'],$sKey2,$sKey3);
$detail = $obj->get('account/verify_credentials');
$return=$return+$detail->followers_count;

如何使用api在twitter上获得男/女粉丝?

1 个答案:

答案 0 :(得分:0)

Twitter API无权访问性别分组。

您可以通过两种方式找到它。

  1. 抓取http://analytics.twitter.com/网站 - 显示关注者性别分割。
  2. 分析照片&追随者的名字,并试图从中确定性别。