为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用nodejs http API模拟web form表单提交?

如何使用nodejs http API模拟web form表单提交?

慕森王 2019-04-21 20:22:23
现在一个应用需要访问不同域下的TAM安全认证服务,需要模拟form表单提交到WebSEAL,先谢谢了。以下是我目前尝试的http请求写法:varhttp=require('http');varquerystring=require('querystring');varpost_options={host:'192.168.1.22',port:'80',path:'/pkmslogin.form',method:'post',auth:'username:123456','login-form-type':'pwd',headers:{'Content-Type':'application/x-www-form-urlencoded'}};varpost_data=querystring.stringify({username:'username',password:'123456','login-form-type':'pwd'});//Setuptherequestvarpost_req=http.request(post_options,function(res){res.setEncoding('utf8');console.log(JSON.stringify(res.headers));res.on('data',function(chunk){console.log('Response:'+chunk);});});console.log(JSON.stringify(post_req.headers));//postthedata//post_req.write(post_data);post_req.end();
查看完整描述

2 回答

?
元芳怎么了

TA贡献1798条经验 获得超7个赞

还需注意以下两点:
//1、在头中设置好内容长度
headers:{
'Content-length':post_data.length,
'Content-Type':'application/x-www-form-urlencoded'
}
varpost_data=querystring.stringify({
username:'username',
password:'123456',
'login-form-type':'pwd'
});
//2、参数写入到流中
post_req.write(post_data);
                            
查看完整回答
反对 回复 2019-04-21
  • 2 回答
  • 0 关注
  • 759 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信