I have problem with one website(juvalis.de) , callback function is not executed.I tried to add headers... and still doesn't work. With curl works just fine and with other websites works fine, any suggestions?
var request=require('request');
request({
uri: "https://www.juvalis.de",
headers:{
'user-agent':'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 '
}, },
function(error, response, body) {
if(error)throw error;
console.log(body);
});