Node.js+Koa開發微信公衆號我的筆記(三)響應文本

響應輸入文本和響應事件相似,首先對微信服務器發送來的數據的MsgType進行處理,若是是text,說明是文本,接下來能夠對文本內容進行處理,好比用戶輸入了1,能夠給用戶回覆一個文本或者圖文或者視頻等信息。服務器

由於這個跟響應事件相似,因此其餘邏輯不用更改,只須要改下autoReply。微信

/wechat/autoReplay.js在if後添加:測試

else if (message.MsgType === 'text') {
        var content = message.Content;
        if (content === '1') {
            return Promise.resolve(createXML({
                ToUserName: message.FromUserName,
                FromUserName: message.ToUserName,
                MsgType: 'text',
                Content: `ahahahahhah`
            }));
        }else if (content === '2') {
            return Promise.resolve(createXML({
                ToUserName: message.FromUserName,
                FromUserName: message.ToUserName,
                MsgType: 'news',
                Articles: [
                    {
                        Title: '張璀測試',
                        Description: '圖文消息描述',
                        PicUrl: 'http://f10.baidu.com/it/u=3038573891,4200009349&fm=72',
                        Url: 'http://www.baidu.com'
                    },
                    {
                        Title: '張璀測試',
                        Description: '圖文消息描述',
                        PicUrl: 'http://f10.baidu.com/it/u=3038573891,4200009349&fm=72',
                        Url: 'http://www.baidu.com'
                    }
                ]
            }));
        }
}

這樣會在咱們輸入1的時候,會收到ahahahahhah,在輸入2的時候,會收到一個news的多圖文信息。spa

接下來實現微信的其餘功能,好比上傳素材,菜單建立等,都須要access_token進行身份驗證,等有時間在繼續寫。code

相關文章
相關標籤/搜索