报302的问题
var http=require('http')
var querystring=require('querystring')
var postData=querystring.stringify({
'content':'老师真棒,测试',
'cid':348
})
var options={
hostname:'www.immooc.com',
port:80,
path:'/course/docomment',
method:'POST',
headers:{
'Accept':'application/json, text/javascript, */*; q=0.01',
'Accept-Encoding':'gzip, deflate',
'Accept-Language':'zh-CN,zh;q=0.8',
'Connection':'keep-alive',
'Content-Length':postData.length,
'Content-Type':'application/x-www-form-urlencoded; charset=UTF-8',
'Cookie':'imooc_uuid=7486ba62-044e-48a7-9254-70958214ee85; imooc_isnew_ct=1492417059; loginstate=1; apsid=M4MWNhMWRmODU5Y2U0ZmU0YjdhNzYzYTYyNjEzYTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANDI5MzUxMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5Nzk3MDM0NDlAcXEuY29tAAAAAAAAAAAAAAAAAAAAADA2NWZiMDJkOWE1NDJjY2NhNmRiZDg3NjJjNDAxZTU1Vnr0WFZ69Fg%3DM2; last_login_username=979703449%40qq.com; UM_distinctid=15bad688a741b3-08430d262c99be-373e0834-5217f-15bad688a754df; PHPSESSID=lqv5opftlchtcat6kdk9ehsj53; IMCDNS=0; Hm_lvt_f0cfcccd7b1393990c78efdeebff3968=1494572088,1494572767,1494572823,1494641530; Hm_lpvt_f0cfcccd7b1393990c78efdeebff3968=1494641737; imooc_isnew=2; cvde=59166b85f277d-15',
'Host':'www.imooc.com',
'Origin':'http://www.imooc.com',
'Referer':'http://www.imooc.com/video/8837',
'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36',
'X-Requested-With':'XMLHttpRequest'
}
}
var req=http.request(options,function(res){
console.log('Status:'+res.statusCode)
console.log('headers:'+JSON.stringify(res.headers))
res.on('data',function(chunk){
console.log(Buffer.isBuffer(chunk))
console.log(typeof chunk)
})
res.on('end',function(e){
console.log('评论完毕!')
})
})
req.on('error',function(e){
console.log('Error:'+e.message)
})
req.write(postData)
req.end()
Status:302
headers:{"server":"Apache-Coyote/1.1","set-cookie":["JSESSIONID=629805C0E911DD0E6EA3103F5875AB17; Path=/; HttpOnly"],"location":"http://www.imooc.com/login.do?custome_url=http://www.imooc.com/course/docomment","content-length":"0","date":"Sat, 13 May 2017 05:47:04 GMT"}
评论完毕!