我正在尝试使用此sync-request库发布帖子请求。并且它们不支持正文选项,因此我需要在标题中手动设置,但我不确切知道如何。
目前我正在尝试这样:
let req = request('POST', LINK, {
'headers': {
'Accept' : 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'Accept-Encoding' : 'gzip, deflate',
'Accept-Language' : 'en-US,en;q=0.8,pt;q=0.6',
'body' : 'ESTCS=1; ESTID=00726861000151',
'Cache-Control' : 'max-age=0',
'Connection' : 'keep-alive',
'Content-Length' : '167',
'Content-Type' : 'application/x-www-form-urlencoded',
'Referer' :
'Upgrade-Insecure-Requests' : '1',
'User-Agent' : 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2584.0 Safari/537.36',
'X-FirePHP-Version' : '0.0.6'
}
});
但没有任何反应。
我需要在我身上发两件事:
let body = {
'ESTCS': 1,
'ESTID': '00726861000151'
};
我正在尝试这样:
'body': 'ESTCS=1; ESTID=00726861000151',
感谢。
答案 0 :(得分:0)
身体应该是&分离。试试这种方式:
'body': 'ESTCS=1&ESTID=00726861000151',