hi i am trying to stream all @elonmusk's tweets using twitter API and send his tweets to my discord server.
currently i can stream tweets with the word 'meme' and send them to my discord server, here is my current code:
discordClient.on('ready', () => {
st.stream('meme', function(tweet){
const channel = discordClient.channels.cache.get('my discord server id');
channel.send(tweet.text);
});
});
but i don't know how to stream a user's tweets. please help me