本篇文章为大家展示了使用nodejs怎么实现微信自动回复,内容简明扼要并且容易理解,绝对能使你眼前一亮,通过这篇文章的详细介绍希望你能有所收获。
微信的消息处理
对于公众平台,每一次发消息相当于发出一个post请求,但是需要注意的是不管是发出的请求还是收到的回复,他的数据格式都是xml,但是nodejs本身无法处理xml,所以需要对xml数据进行处理。
仍然使用的是body-parser这个库,但是需要引入body-parser-xml:
//解析xml app.use(bodyParser.xml({ limit: '1MB', // Reject payload bigger than 1 MB xmlParseOptions: { normalize: true, // Trim whitespace inside text nodes normalizeTags: true, // Transform tags to lowercase explicitArray: false // Only put nodes in array if >1 } }));
这样req.body.xml
就是处理好的数据了。
一般文本消息的格式如下所示:
<xml> <ToUserName><![CDATA[toUser]]></ToUserName> <FromUserName><![CDATA[fromUser]]></FromUserName> <CreateTime>1348831860</CreateTime> <MsgType><![CDATA[text]]></MsgType> <Content><![CDATA[this is a test]]></Content> <MsgId>1234567890123456</MsgId> </xml>
其中ToUserName
是接受者的openid,FromUserName
是发送者的openid,CreateTime
就是一个整型的时间戳。MsgType
就是消息类型,一般有文本(text),图片(image),语音(voice),视频(video),小视频(shortvideo),地理位置(location)以及链接消息(link)。下面就以文本消息为例进行编码。
router.post('/', function (req, res) { res.writeHead(200, {'Content-Type': 'application/xml'}); var data = req.body.xml; var resMsg = '<xml>' + '<ToUserName><![CDATA[' + data.fromusername + ']]></ToUserName>' + '<FromUserName><![CDATA[' + data.tousername + ']]></FromUserName>' + '<CreateTime>' + parseInt(new Date().valueOf() / 1000) + '</CreateTime>' + '<MsgType><![CDATA[text]]></MsgType>' + '<Content><![CDATA['+data.content+']]></Content>' + '</xml>'; res.end(resMsg); });
只需要将header的content-type设置为xml,返回一个xml的响应,那么公众号就会相应的回复一个消息,这里回复的消息是文本格式。(mac的微信一年没更新了--)
如上图,发送消息则会回复一个内容一样的消息,一个简单的自动回复就实现了。
图灵机器人
这个接口的使用十分简单,get请求链接,记得带上apikey的头,然后就会返回响应的内容。我这里请求使用的是nodejs request库。
const request = require('request'); const config = require('../../config'); function getTuringResponse(info) { if(typeof info !== 'string') { info = info.toString(); } var options = { method:'GET', url: 'http://apis.baidu.com/turing/turing/turing?key=879a6cb3afb84dbf4fc84a1df2ab7319&info='+info, headers: { 'apikey': config.turingKey } }; return new Promise((resolve, reject) => { request(options, function (err, res, body) { if (res) { resolve(body); } else { reject(err); } }); }) } module.exports = getTuringResponse;
使用promise处理异步返回的结果,避免多次回调,记得把apikey设置为header内容。
公众号机器人
好了,上面是二者分开的讲的,如果看到这应该知道一个聊天机器人的实现是非常简单的了。就是将接口响应的内容返回给用户(?如果不是非要自己实现聊天机器人的话。。。),后台这里也就相当于一个跳板。
turingRobot.js
const request = require('request'); const config = require('../../config'); function getTuringResponse(info) { if(typeof info !== 'string') { info = info.toString(); } var options = { method:'GET', url: 'http://apis.baidu.com/turing/turing/turing?key=879a6cb3afb84dbf4fc84a1df2ab7319&info='+info, headers: { 'apikey': config.turingKey } }; return new Promise((resolve, reject) => { request(options, function (err, res, body) { if (res) { resolve(body); } else { reject(err); } }); }) } module.exports = getTuringResponse;
这部分代码很简单了,就是将图灵机器人的接口响应消息返回出来。下面要做的就是将消息返回给用户,这里有一点需要注意的是对于发出的响应,该接口不能直接响应中文字符串,需要进行urlencode。
//autoReply.js const request = require('request'); function autoReply(requestData, info) { switch (requestData.msgtype) { case 'text': var resMsg = '<xml>' + '<ToUserName><![CDATA[' + requestData.fromusername + ']]></ToUserName>' + '<FromUserName><![CDATA[' + requestData.tousername + ']]></FromUserName>' + '<CreateTime>' + parseInt(new Date().valueOf() / 1000) + '</CreateTime>' + '<MsgType><![CDATA[text]]></MsgType>' + '<Content><![CDATA['+info+']]></Content>' + '</xml>'; break; } return resMsg; } module.exports = autoReply;
自动回复的模块,主要是返回一个xml字符串,方便发送给用户。
//weixin.js router.post('/', function (req, res) { res.writeHead(200, {'Content-Type': 'application/xml'}); var content = req.body.xml.content; turingRobot(encodeURI(content)).then(function (data) { var response = JSON.parse(data); var resMsg = autoReply(req.body.xml, response.text); res.end(resMsg); }) });
上述内容就是使用nodejs怎么实现微信自动回复,你们学到知识或技能了吗?如果还想学到更多技能或者丰富自己的知识储备,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。