다음과 같은 코드가 있습니다.
var req = require('request');
req.post('someUrl',
{ form: { username: 'user', password: '', opaque: 'someValue', logintype: '1'}, },
function (e, r, body) {
console.log(body);
});
이에 대한 헤더를 어떻게 설정할 수 있습니까? user-agent, content-type 및 아마도 헤더에 다른 것이 필요합니다.
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.110 Safari/537.36',
'Content-Type' : 'application/x-www-form-urlencoded'
};
여러 가지 방법으로 시도했지만 헤더 또는 양식 데이터를 보낼 수 있지만 둘 다 보내지 못했습니다.