TNW-開啓公衆號開發者模式

TNW-開啓公衆號開發者模式javascript

簡介

TNW: TypeScript(The) + Node.js(Next) + WeChat 微信公衆號開發腳手架,支持 http 模塊擴展、支持任何 Node.js 的服務端框架(Express、NestJS 等)vue

安裝

NPM 依賴方式

一、下載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;
複製代碼

特別說明安全

  1. 支持多公衆號配置,如須要能夠多實例化 ApiConfig 而後調用 ApiConfigKit.putApiConfig(apiConfig) 進行設置。bash

  2. ApiConfig 參數說明

    第一個參數:令牌 Token 能夠任意填寫

    第二個參數:開發者ID appId

    第三個參數:開發者密碼 appScrect

    第四個參數:是否開啓加密 encryptMessage 默認值爲 false

    第五個參數:消息加解密密鑰 encodingAesKey 非必須

  3. 設置多個公衆號配置時默認使用第一個 ApiConfig

  4. 切換公衆號配置能夠調用 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));
}
複製代碼

特別說明:

  1. 開發者URL爲:http/https://域名/msg 或者 http/https://域名/msg?appId=xxxxx
  2. 測試號的加密模式必須設置爲 false (上文提到的 ApiConfig 第四個參數)
  3. 正式號推薦開啓加密模式並設置爲 安全模式

本地端口映射工具

推薦使用 FRP 目前Github Start 已超越 2.2w。若有更好的工具歡迎推薦(留言區見)

開源推薦

相關文章
相關標籤/搜索