ttezel / twit

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

Is it possible to use the track and follow params at the same time on status/filter stream? #546

Open AditModi opened 3 years ago

AditModi commented 3 years ago

var stream = T.stream('statuses/filter', { follow: twitter_config.handles , track: twitter_config.topics , language: twitter_config.languages });

I am using above approach but it doesn't seem to work. twitter_config.handles are the user-ids and topics are the keywords.

is user-ids correct way of referencing for this architecture???

Should I be using screen_name or user-id???

What to do if i have to use few thousand user-ids and a few keywords??

What about using the same-ip address for entire twitter-scraping application???

AditModi commented 3 years ago

@maziyarpanahi , Any idea about this approach???