有这样一个需求,就是模拟浏览器登录。 需要这样做:
- 先get一次某url :LOGIN_URL拿到必须的参数
- 接着post这个LOGIN_URL,把上一步get到的数据重新组织POST过去
我用的是needle
这样
needle.get(LOGIN_URL, function(err, resp, body){
//process parameters
needle.post(LOGIN_URL, function(err, resp, body){
//到这里就会卡住,post不出去,
})
})
请问该怎么解决?
12 回复
@ibigbug 文档中的示例是这样的:
var data = {
token: 'verysecret',
payload: {
value: JSON.stringify({ title: 'test', version: 1 }),
content_type: 'application/json'
}
}
needle.post('http://test.com/', data, { timeout: 5000, multipart: true }, function(err, resp, body){
// in this case, if the request takes more than 5 seconds
// the callback will return a [Socket closed] error
});
参考:https://github.com/tomas/needle
不知道你有没有看过文档!!!
还有,帖子标题应该简单地描述一下问题,而不是“新手请教一个问题。。”