Я использую requestjs для отправки запроса на https://www.handelsregister.de/rp_web/search.do.
Запрос должен выглядеть следующим образом:
Как добавить тело запроса?
Моя попытка:
function callback(error, response, body) {
if (error) return error;
// write the body to an external file
fs.writeFileSync('body.html', body);
return body;
}
function writeFile(url = 'https://www.handelsregister.de/rp_web/search.do') {
const headers = {
// headers, as you can see in the picture. I am sure my headers a correct.
// this is probably NOT the right place for using a request body, right? At least it does not work ...
qs:
'suchTyp=n®isterArt=®isterNummer=®istergericht=R3102&schlagwoerter=&schlagwortOptionen=2&ergebnisseProSeite=100&btnSuche=Find'
};
const options = {
url, // https://www.handelsregister.de/rp_web/search.do
headers
};
return request(options, callback);
}
writeFile().then(() => {
console.log('finished');
});