ttezel / twit

Twitter API Client for node (REST & Streaming API)
4.31k stars 568 forks source link

Statuses text truncated #434

Closed RIZY101 closed 6 years ago

RIZY101 commented 6 years ago

So when I use the .get function to find the actual text from the tweet it is truncated. Is there anyway to return the full contents of the tweet, with another param to that .get function maybe?

ttezel commented 6 years ago

@RIZY101 we just return the response content received from the Twitter API - there's nothing magic twit can do - it just passes your params and parses the response. You can use any param supported by the Twitter API

ttezel commented 6 years ago

If you think there's something twit is doing wrong, feel free to reopen this issue with code to reproduce the issue, and I can take a look.

RIZY101 commented 6 years ago

Yeah I'm sorry that was my fault I had not done any research on the twitter API. For those wondering you just have to add tweet_mode : 'extended' to your params in the get function to fix the issue I described above.