检查Twitter api是否在Twitter上验证了用户

时间:2014-11-06 22:35:00

标签: twitter

我正在做一个项目,以确定用户是否是Twitter上的名人。有没有办法检查Twitter中的用户是否被验证为名人?我知道名人会在推特个人资料中发现蓝色徽章。但是我如何通过Twitter API检索信息并查看是否有蓝色徽章?

1 个答案:

答案 0 :(得分:11)

来自/users/show

Each Twitter user object附带一个verified布尔字段。如果用户已经过验证,则会true;否则它将是false

例如,my Twitter profile的典型回复可能如下:

{
  "name": "John Feminella",
  "screen_name": "jxxf",
  # ...
  "verified": true,          # True if the user is verified, false otherwise.
  # ...
}