检查用户是否通过twitter api在twitter中验证
问题描述:
我正在做一个项目,以确定用户是否是Twitter中的名人。有什么方法可以检查Twitter中的用户是否被证实为名人?我知道一个名人会在twitter个人资料中标识一个蓝色徽章。但是,我如何通过Twitter API检索信息并查看是否有蓝色徽章?检查用户是否通过twitter api在twitter中验证
答
Each Twitter user object从/users/show
附带verified
布尔字段。如果用户被验证,则将是true
;否则会是false
。
例如,从my Twitter profile典型的反应可能是:
{
"name": "John Feminella",
"screen_name": "jxxf",
# ...
"verified": true, # True if the user is verified, false otherwise.
# ...
}
+0
我看!谢谢 ! – lienahu 2014-11-06 22:50:54
https://twittercommunity.com/t/how-to-check-whether-the-user-has-been-verified/ 17630 – bernie 2014-11-06 22:37:52
https://dev.twitter.com/rest/reference/get/account/verify_credentials(验证接近尾声) – 2014-11-06 22:48:15