是否有任何人有任何想法或方法或代碼(PHP)找到使用Twitter API的特定用戶的鳴叫數量?任何方式來計算使用Twitter API的特定用戶的Twitter推文?
6
A
回答
6
有一種方法,你需要使用用戶/節目資源,
你可以找到的文檔here 這裏是一個output example
更準確地說,你是尋找statuses_count
這是截取的輸出取自文檔頁面
{
"name": "Twitter API",
"profile_sidebar_border_color": "87bc44",
"profile_background_tile": false,
"profile_sidebar_fill_color": "e0ff92",
"location": "San Francisco, CA",
"profile_image_url": "http://a3.twimg.com/profile_images/689684365/api_normal.png",
"created_at": "Wed May 23 06:01:13 +0000 2007",
"profile_link_color": "0000ff",
"favourites_count": 2,
"url": "http://apiwiki.twitter.com",
"contributors_enabled": true,
"utc_offset": -28800,
"id": 6253282,
"profile_use_background_image": true,
"profile_text_color": "000000",
"protected": false,
"followers_count": 160752,
"lang": "en",
"verified": true,
"profile_background_color": "c1dfee",
"geo_enabled": true,
"notifications": false,
"description": "The Real Twitter API. I tweet about API changes, service issues and happily answer questions about Twitter and our API. Don't get an answer? It's on my website.",
"time_zone": "Pacific Time (US & Canada)",
"friends_count": 19,
"statuses_count": 1858,
[...]
1
因爲你一次只能返回200個,我不認爲你可以。
更多信息:http://blog.twostepmedia.co.uk/retrieve-tweets-using-php-and-json/
相關問題
- 1. 自定義推特來自我的Twitter使用Ruby On Rails Twitter推送twitter plm
- 2. Twitter API - 獲取特定ID的推文
- 3. Twitter API以獲取特定用戶的最近推文
- 4. 如何使用twitter api顯示特定時間段的推文
- 5. 使用twitter API來聚合多個特定的Twitter供稿?
- 6. 如何使用Twitter API獲取特定用戶和時間段的推文?
- 7. Twitter API獲取任何用戶的所有推文
- 8. 使用Twitter API確定推文位置
- 9. twitter的推特按鈕數不計算
- 10. 推特Twitter的鏈接計數REST API
- 11. 如何使用新的Twitter API v1.1吸引用戶的推文?
- 12. Twitter搜索API中的特定用戶沒有任何結果
- 13. Twitter API推文
- 14. 使用Twitter REST API轉推計數
- 15. 如何在twitter中使用twitter api在twitter中搜索以下推文中的特定字符串?
- 16. 使用Twitter API api v1.1搜索/推文
- 17. 任何方式來獲取Twitter用戶的電子郵件?
- 18. Twitter API高級搜索來自用戶的推文
- 19. Twitter:如何使用twitter api獲取json格式的所有推文
- 20. 使用twitter api從Twitter登錄用戶
- 21. Twitter API:如何獲取用戶ID,誰最喜歡特定的推文?
- 22. 如何從用戶使用twitter API獲取Tweet推文Tweet
- 23. 如何使用twitter用戶名以json形式獲取twitter推文
- 24. Twitter API - 獲取帳戶的推特計數
- 25. 獲取特定Twitter用戶的推文嗎?
- 26. 使用Twitter api url發送推文
- 27. 使用Python與Twitter API發佈推文?
- 28. 推文的Twitter API位置
- 29. 如何使用Twitter取回推特用戶的名字4j
- 30. 是否可以使用Twitter API訪問來自用戶的所有推文?
謝謝偉大的工作原理 – 2011-02-02 16:09:20