How to get the full text in Tweepy v2 search

657 Views Asked by At

I'm trying yo get the full text in twitter search using Tweepy v2. I used search_recent_tweets(), but it returns only truncated tweets.

import tweepy
import credentials

client = tweepy.Client(credentials.bearer_token)

query = 'policy'

response = client.search_recent_tweets(query, tweet_fields = ["created_at", "text", "source"], max_results=10)

tweets = response.data
tweets[0]['text']

The output is:

"RT @saletan: I wasn't aware of this policy till it happened to my son. I told the story below.\n\nSix weeks after they locked his account, he…"

0

There are 0 best solutions below