我正在使用tweepy從用戶的時間軸中使用包含的腳本獲取tweets here。然而,微博在截斷未來:使用tweepy從「user_timeline」獲取完整的tweet文本
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_key, access_secret)
api = tweepy.API(auth)
new_tweets = api.user_timeline(screen_name = screen_name,count=200, full_text=True)
返回:
Status(contributors=None,
truncated=True,
text=u"#Hungary's new bill allows the detention of asylum seekers
& push backs to #Serbia. We've seen push backs before so\u2026 https://
t.co/iDswEs3qYR",
is_quote_status=False,
...
也就是說,對於一些i
,new_tweets[i].text.encode("utf-8")
看起來像
#Hungary's new bill allows the detention of asylum seekers &
push backs to #Serbia. We've seen push backs before so…https://t.co/
iDswEs3qYR
凡在後者...
替換文本通常會在Twitter上顯示。
是否有人知道如何覆蓋truncated=True
以獲取我的請求上的全文?
你在做什麼,以收到回報? –
對不起,回覆很慢,剛纔看到這個 - 我只是漂亮的打印'new_tweets [0]'。 – atkat12
[Tweepy Truncated Status]的可能重複(http://stackoverflow.com/questions/42050289/tweepy-truncated-status) – mountrix