Skip to content
New issue

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

Retweets TEXT is truncated, retweeted_status not available #22

Open
rmoff opened this issue Dec 3, 2019 · 2 comments
Open

Retweets TEXT is truncated, retweeted_status not available #22

rmoff opened this issue Dec 3, 2019 · 2 comments

Comments

@rmoff
Copy link

rmoff commented Dec 3, 2019

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?

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                                                                 |
@jcustenborder
Copy link
Owner

@rmoff in the API I am using getRetweetedStatus and getQuotedStatus are full Status objects. If I pulled these in would it work for you?

@rmoff
Copy link
Author

rmoff commented Dec 3, 2019

yes that would be 💯 what I need 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants