We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TEXT
Per https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/tweet-object the text field is truncated for retweets, with the full value available in retweeted_status. Can retweeted_status be added to the schema for this connector?
text
retweeted_status
At the moment any RT is only available in its first 140 characters (give or take for user name length etc):
ksql> select retweet, max(len(text)) as max_tweet_length from all_tweets group by retweet emit changes; +--------------------------------------------------------------------+--------------------------------------------------------------------+ |RETWEET |MAX_TWEET_LENGTH | +--------------------------------------------------------------------+--------------------------------------------------------------------+ |false |411 | |true |152 |
The text was updated successfully, but these errors were encountered:
@rmoff in the API I am using getRetweetedStatus and getQuotedStatus are full Status objects. If I pulled these in would it work for you?
getRetweetedStatus
getQuotedStatus
Sorry, something went wrong.
yes that would be 💯 what I need 👍
No branches or pull requests
Per https://developer.twitter.com/en/docs/tweets/data-dictionary/overview/tweet-object the
text
field is truncated for retweets, with the full value available inretweeted_status
. Canretweeted_status
be added to the schema for this connector?At the moment any RT is only available in its first 140 characters (give or take for user name length etc):
The text was updated successfully, but these errors were encountered: