我正在使用Twitter客戶端,我正在使用tweepy,但使用它我無法獲取user_timeline中的實體。我怎樣才能得到這些實體? 讓某人更新了AppEngine Library的Tweepy?Tweepy實體Appengine
3
A
回答
2
# Iterate through the first 200 statuses in the friends timeline
for status in tweepy.Cursor(api.friends_timeline).items(200):
# Process the status here
process_status(status)
1
您需要提供include_entities = True
:
api.user_timeline(include_entities = True).
這不是設置爲true默認的原因是因爲實體加入到Twitter的API後,和因此稍後將其添加到Tweepy。
相關問題
- 1. AppEngine,實體丟失?
- 2. AppEngine實體和管理
- 3. 在實體中查詢實體中的選定字段 - appengine
- 4. 如何在實體中添加實體列表? (AppEngine Java)
- 5. Appengine實體更新不起作用
- 6. 如何爲AppEngine實體添加creationTime
- 7. 刪除AppEngine上的實體時出錯
- 8. Google AppEngine實體組和事務
- 9. AppEngine實體的審計字段
- 10. 在谷歌appengine更新多個實體
- 11. 優化appengine實體密鑰的使用
- 12. appengine bulkdownloader與嵌套實體的xml
- 13. 訪問Appengine NDB中刪除的實體
- 14. 如何獲得tweepy api.get_user方法實體內的值(蟒蛇)
- 15. Twitter的實體:怪異的Twitter/tweepy行爲
- 16. 導入錯誤,「無模塊命名tweepy」 - 谷歌的AppEngine
- 17. appengine ndb上的圖形實體的最佳實踐
- 18. appengine:如何通過密鑰在具有祖先的實體中查詢實體?
- 19. 用tweepy發送多個媒體
- 20. tweepy與Django流媒體API集成
- 21. 微博時間軸流媒體與tweepy
- 22. Tweepy更新與媒體錯誤
- 23. JDO在AppEngine上:保持原有的實體無主從關係
- 24. Java Google appengine datastore.get在現有實體上拋出EntityNotFoundException
- 25. 如何下載/上傳appengine中的所有實體?
- 26. 使用Go更新實體Appengine數據存儲
- 27. AppEngine bulkloader通過設置key_name上傳實體
- 28. 如何在Golang AppEngine中創建子實體?
- 29. 谷歌AppEngine上 - 實體類沒有提高
- 30. 3個模型實體的AppEngine加入Python的
說「我不能做x」不是很有用,除非你告訴我們_why_你不能做x。當你嘗試時會發生什麼? –
請注意,您正在使用應用引擎,這意味着您與許多人共享公共IP。這可能會導致您對公共職能進行費率限制,而不需要身份驗證,但是會根據您的IP對您進行評級。但是user_timeline不應該是這種情況? –
嘿,尼克和山姆。我遇到了同樣的問題。讓我來給你更多的細節:在tweepy中調用user_timeline時,include_entities和include_rts不起作用。當你打電話給home_timeline時,他們會工作。所有呼叫都啓用了oauth,這意味着twitter不會查看IP(無論如何都是在本地運行)。我不得不進入tweepy API類,並將兩個屬性添加到user_timeline下允許的屬性,我還必須啓用user_timeline oauth。這些只是簡單的配置。我檢查了從Twitter返回的JSON,RT中沒有實體存在。 –