TNW-開啓公衆號開發者模式javascript
TNW: TypeScript(The) + Node.js(Next) + WeChat 微信公衆號開發腳手架,支持 http 模塊擴展、支持任何 Node.js 的服務端框架(Express、NestJS 等)vue
一、下載java
$ npm i tnw
複製代碼
二、Express 示例git
三、Nest 示例github
一、下載項目並安裝依賴typescript
$ git clone https://github.com/Javen205/TNW.git
或者
$ git clone https://gitee.com/Javen205/TNW.git
$ cd TNW
$ npm install
複製代碼
二、編譯並運行npm
$ npm run build
$ npm run dev
複製代碼
三、完整示例api
// 亦能夠讀取配置文件
let apiConfig = new ApiConfig("Javen", "wx614c453e0d1dcd12", "19a02e4927d346484fc70327970457f9");
// 支持多公衆號
ApiConfigKit.putApiConfig(apiConfig);
// 開啓開發模式,方便調試
ApiConfigKit.devMode = true;
複製代碼
特別說明安全
支持多公衆號配置,如須要能夠多實例化 ApiConfig
而後調用 ApiConfigKit.putApiConfig(apiConfig)
進行設置。bash
ApiConfig
參數說明
第一個參數:令牌 Token 能夠任意填寫
第二個參數:開發者ID appId
第三個參數:開發者密碼 appScrect
第四個參數:是否開啓加密 encryptMessage 默認值爲 false
第五個參數:消息加解密密鑰 encodingAesKey 非必須
設置多個公衆號配置時默認使用第一個 ApiConfig
切換公衆號配置能夠調用 ApiConfigKit.setCurrentAppId(appId)
TNW 中驗證簽名的關鍵接口以下:
WeChat.checkSignature(signature, timestamp,nonce, echostr)
複製代碼
Express 示例以下:
app.get('/msg', (req: any, res: any) => {
console.log('get query...', req.query);
let appId: string = req.query.appId;
if (appId) {
ApiConfigKit.setCurrentAppId(appId);
}
let signature = req.query.signature,//微信加密簽名
timestamp = req.query.timestamp,//時間戳
nonce = req.query.nonce,//隨機數
echostr = req.query.echostr;//隨機字符串
res.send(WeChat.checkSignature(signature, timestamp,
nonce, echostr));
});
複製代碼
Nest 示例以下:
@Get('/msg')
getMsg(@Req() request: Request, @Res() response: Response) {
let appId: string = request.query.appId;
if (appId) {
ApiConfigKit.setCurrentAppId(appId);
}
let signature = request.query.signature,//微信加密簽名
timestamp = request.query.timestamp,//時間戳
nonce = request.query.nonce,//隨機數
echostr = request.query.echostr;//隨機字符串
response.send(WeChat.checkSignature(signature, timestamp,nonce, echostr));
}
複製代碼
特別說明:
http/https://域名/msg
或者 http/https://域名/msg?appId=xxxxx
false
(上文提到的 ApiConfig
第四個參數)安全模式
推薦使用 FRP 目前Github Start 已超越 2.2w。若有更好的工具歡迎推薦(留言區見)
TNW
微信公衆號開發腳手架:gitee.com/javen205/TN…IJPay
讓支付觸手可及:gitee.com/javen205/IJ…mica
工具集:gitee.com/596392912/m…Avue
一款基於 vue 可配置化的神奇框架:gitee.com/smallweigit…pig
宇宙最強微服務(架構師必備):gitee.com/log4j/pigSpringBlade
完整的線上解決方案(企業開發必備):gitee.com/smallc/Spri…