I follow the every steps of above link. But I had made changes in application name after doing above steps.
So the same process as mentioned in above link and then after not changes in your application then sure works.
also add the userProfileURL field in passport twitter strateggy as bellow:
passport.use(new TwitterStrategy({
consumerKey : config_node_env.twitterAuth.consumerKey,
consumerSecret : config_node_env.twitterAuth.consumerSecret,
callbackURL : config_node_env.twitterAuth.callbackURL,
passReqToCallback: true,
userProfileURL: "https://api.twitter.com/1.1/account/verify_credentials.json?include_email=true",
},
function(req, token, tokenSecret, profile, done) {
console.log(' twitter profile------------------------------')
.
. so on