I am getting a response of node js request having options like URL methods and cookie but I am getting a response as an HTML with some script. While consoling the response, I am getting some encoded text and having buffer data. How I can print the response of HTML as it is i.e HTML in my response to the HTTP request.
.....................................
const https = require('https');
SearchById(Id)
{
const options = {}
const req = https.request(options, function(res) {
try{
if(res)
{
console.log("response",res)// here i am getting json data
res.on('data', d => {
console.log("SearchById ",d); // here i am getting encoded text with buffer data
})
}
else{
console.log(`product with ${id} is not there`)
}
}
catch(err)
{
console.log(err);
}
})
}
SearchById(777474)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…