Back
Question
Asked

Is it possible to autoreply everytime someone tweets?

I've noticed that the replies to big famous social media accounts do pretty well. Often the top reply racks up well over 300 likes and gets followers etc ...

Whenever Kanye tweets I want to autoreply with the link to https://phonemekanyewest.com and maybe yeezy.dating just to help spread the word amongst ye fans.

ive used twitter npm module b4 but can't work out how to autoreply!


Try something like
var stream = T.stream('statuses/filter', { follow: Kanyesscreenname });
stream.on('tweet', function (tweet) {
console.log("reply here");
});

Sounds a bit like spam. You risk getting your account suspended.

I bet you could create a dictionary of 50-100 tweets, and just rotate through them every time. Also introduce a random time delay, so it doesn't seem so automated.