申请微信公众号,这个不多讲。
代码:
以 Koa1 框架 为例
var router = require('koa-router')(); var sha1 = require('sha1'); var config = { wechat_config : { app_id : '{开发者id}', token_code : '{自定义}', encoding_AES_Key : '{随机生成}' } }; router.get('/',function *(next) { // this,query var token = config.wechat_config.token_code, signature = this.query.signature, timestamp = this.query.timestamp, nonce = this.query.nonce, echostr = this.query.echostr; var str = [token,timestamp,nonce].sort().join(''); //按照官方规则 var sha = sha1(str); if(sha == signature){ //相等时,接入通过 this.body = echostr + ''; }else{ this.body = 'wrong'; } }); module.exports = router;
进入微信公众平台后,
选择基本配置 - 填写服务器URL - Token(自定义的)- 点击随机生成 EncodingAESKey - 安全模式