DEV Community

Discussion on: BEEP BOOP! How to make a Twitter Bot (Part 2)

Collapse
 
stanjdev profile image
stanjdev

Does anyone know why I keep getting this error in terminal after I followed all the steps and entered node bot.js ?

console.log(err[0].message);
                                   ^

TypeError: Cannot read property 'message' of undefined
Enter fullscreen mode Exit fullscreen mode

I have followed 3 other tutorials that were very similar to this, and I followed this one because it was made most recently (2019).

Any idea what could be wrong? I even copied and pasted it entirely, installed the twitter dependency, and my keys and secret keys are recent.

Collapse
 
maawais profile image
maawais • Edited

Replace error block with this:

if(err){
console.log('Error:- ', err.message);
}

You will get the exact error message.