2014-11-06 124 views
4

我正在做一個項目,以確定用戶是否是Twitter中的名人。有什麼方法可以檢查Twitter中的用戶是否被證實爲名人?我知道一個名人會在twitter個人資料中標識一個藍色徽章。但是,我如何通過Twitter API檢索信息並查看是否有藍色徽章?檢查用戶是否通過twitter api在twitter中驗證

+0

https://twittercommunity.com/t/how-to-check-whether-the-user-has-been-verified/ 17630 – bernie 2014-11-06 22:37:52

+0

https://dev.twitter.com/rest/reference/get/account/verify_credentials(驗證接近尾聲) – 2014-11-06 22:48:15

回答

9

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

相關問題