pc端评论插件:
1、搜狐畅言:
2、多说
nodeJs评论
var http = require('http')
var querystring = require('querystring')
var postData = querystring.stingify({
'content' : '评论',
'cid': cid
})
var options = {
hostname: 'http://www.itxdh.com/',
port:80,
path:'/course/ajaxmediauser',
method:'POST',
headers:{
'Host':'www.imooc.com',
'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0',
'Accept':'application/json, text/javascript, */*; q=0.01',
'Accept-Language':'zh-CN,zh;q=0.8,en-US;q=0.5,en;q=0.3',
'Accept-Encoding':'gzip, deflate'
'Content-Type':'application/x-www-form-urlencoded; charset=UTF-8',
'X-Requested-With':'XMLHttpRequest',
'Referer':'http://www.itxdh.com/cid',
'Content-Length':'46',
'Connection':'keep-alive',
'Pragma':'no-cache',
'Cache-Control':'no-cache'
}
}
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(){
console.log('评论成功!')
})
})
req.on('error', function(e){
console.log('Error:' + e.message)
})
req.write(postData)
req.end()