Yes, of course, thank you!
So after setting up the connection with Twitter, I am trying to get Tweets including a specific hashtag (I hope it's not advertising)
My Code looks like this:
AmazonEcho_tweets <- searchTwitter("AmazonEcho", n=1000, lang="en")
AmazonEcho_tweetsDF <-twListToDF(AmazonEcho_tweets)
head(AmazonEcho_tweetsDF)
I am getting a list of tweets, but lots of those tweets are not complete and end with "...". I figured that they end after 140 characters, which happens to be also the limited amount of characters in a tweet. But in fact most of the tweets are longer than 140 characters.
Thank you in advance!