主頁(yè) > 知識(shí)庫(kù) > asp.net開發(fā)微信公眾平臺(tái)之獲取用戶消息并處理

asp.net開發(fā)微信公眾平臺(tái)之獲取用戶消息并處理

熱門標(biāo)簽:河北網(wǎng)絡(luò)回?fù)芡夂粝到y(tǒng) 河南語(yǔ)音外呼系統(tǒng)公司 400電話辦理最優(yōu)質(zhì) 外呼電銷機(jī)器人軟件 關(guān)于宗地圖標(biāo)注技術(shù)規(guī)范 寧夏機(jī)器人電銷 400免費(fèi)電話怎么辦理 t3出行地圖標(biāo)注怎么做 威海電銷

獲取用戶消息

用戶發(fā)送的消息是在微信服務(wù)器發(fā)送的一個(gè)HTTP POST請(qǐng)求中包含的,獲取用戶發(fā)送的消息要從POST請(qǐng)求的數(shù)據(jù)流中獲取

微信服務(wù)器推送消息到服務(wù)器的HTTP請(qǐng)求報(bào)文示例

POST /cgi-bin/wxpush? msg_signature=477715d11cdb4164915debcba66cb864d751f3e6timestamp=1409659813nonce=1372623149 HTTP/1.1

    Host: qy.weixin.qq.com

從POST請(qǐng)求中獲取數(shù)據(jù)

這樣獲得的用戶消息可能有兩種情況:加密后的消息或是未加密的消息,這與你在微信公共平臺(tái)配置網(wǎng)站時(shí) 消息加解密模式的選取 有關(guān),如果選擇了明文模式,則不會(huì)加密,如果選擇了兼容模式,則密文和明文都存在,如果選擇的是安全模式,則用戶消息會(huì)被加密,需要解密后才能進(jìn)一步處理

2.回復(fù)用戶消息

參考微信公共平臺(tái)開發(fā)文檔

•文本消息

xml> 
ToUserName>![CDATA[{0}]]>/ToUserName> 
FromUserName>![CDATA[{1}]]>/FromUserName> 
CreateTime>{2}/CreateTime> 
MsgType>![CDATA[text]]>/MsgType> 
Content>![CDATA[{3}]]>/Content> 
/xml>


•圖片消息

xml> 
ToUserName>![CDATA[{0}]]>/ToUserName> 
FromUserName>![CDATA[{1}]]>/FromUserName> 
CreateTime>{2}/CreateTime> 
MsgType>![CDATA[image]]>/MsgType> 
Image> 
MediaId>![CDATA[{3}]]>/MediaId> 
/Image> 
/xml>

消息格式已經(jīng)有了,接著我們只需要設(shè)置相應(yīng)的參數(shù)即可。

responseContent = string.Format(ReplyType.Message_Text, 
 FromUserName.InnerText, 
 ToUserName.InnerText, 
DateTime.Now.Ticks, 
String.IsNullOrEmpty(reply)?"Sorry,I can not follow you." :reply);

3.用戶消息與服務(wù)器消息的加密解密

微信公共平臺(tái)開發(fā)者文檔中提供有c++,C#,java等各種語(yǔ)言的加密解密示例,我們用到的是C#,只需要將其中的兩個(gè)文件添加到項(xiàng)目中即可,Sample.cs是微信團(tuán)隊(duì)給出的示例代碼,不需要引用,對(duì)

WXBizMsgCrypt.cs與Cryptography.cs文件添加引用即可。為了進(jìn)一步封裝和方便調(diào)用,我又新建了一個(gè)類WeChatSecurityHelper

類中的定義兩個(gè)方法,分別來(lái)進(jìn)行加密(EncryptMsg)和解密(DecryptMsg),創(chuàng)建一個(gè)WXBizMsgCrypt對(duì)象,調(diào)用它的方法加解密,具體代碼可見代碼示例

WeChatSecurityHelper

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Common
{
  public class WeChatSecurityHelper
  {
    /// summary>
    /// 定義Token,與微信公共平臺(tái)上的Token保持一致
    /// /summary>
    private const string Token = "StupidMe";
    /// summary>
    /// AppId 要與 微信公共平臺(tái) 上的 AppId 保持一致
    /// /summary>
    private const string AppId = "11111111111";
    /// summary>
    /// 加密用 
    /// /summary>
    private const string AESKey = "pvX2KZWRLQSkUAbvArgLSAxCwTtxgFWF3XOnJ9iEUMG";

    private static Tencent.WXBizMsgCrypt wxcpt = new Tencent.WXBizMsgCrypt(Token, AESKey, AppId);
    private string signature,timestamp,nonce;
    private static LogHelper logger = new LogHelper(typeof(WeChatSecurityHelper));


    public WeChatSecurityHelper(string signature, string timestamp, string nonce)
    {
      this.signature = signature;
      this.timestamp = timest
      this.nonce = nonce;
    }

    /// summary>
    /// 加密消息
    /// /summary>
    /// param name="msg">要加密的消息/param>
    /// returns>加密后的消息/returns>
    public string EncryptMsg(string msg)
    {
      string encryptMsg="";
      int result = wxcpt.EncryptMsg(msg, timestamp, nonce, ref encryptMsg);
      if (result == 0)
      {
        return encryptMsg;
      }
      else
      {
        logger.Error("消息加密失敗");
        return "";
      }
    }

    /// summary>
    /// 解密消息
    /// /summary>
    /// param name="msg">消息體/param>
    /// returns>明文消息/returns>
    public string DecryptMsg(string msg)
    {
      string decryptMsg = "";
      int result = wxcpt.DecryptMsg(signature, timestamp, nonce, msg,ref decryptMsg);
      if (result != 0)
      {
        logger.Error("消息解密失敗,result:"+result);
      }
      return decryptMsg;
    }
  }
}

以上所述就是本文的全部?jī)?nèi)容了,希望大家能夠喜歡。

您可能感興趣的文章:
  • php版微信開發(fā)之接收消息,自動(dòng)判斷及回復(fù)相應(yīng)消息的方法
  • 微信小程序-消息提示框?qū)嵗?/li>
  • 微信小程序-詳解微信登陸、微信支付、模板消息
  • 微信公眾號(hào)開發(fā)之文本消息自動(dòng)回復(fù)php代碼
  • 微信公眾號(hào)開發(fā)之語(yǔ)音消息識(shí)別php代碼
  • Java開發(fā)微信公眾號(hào)接收和被動(dòng)回復(fù)普通消息
  • php實(shí)現(xiàn)微信公眾號(hào)主動(dòng)推送消息
  • 基于python實(shí)現(xiàn)微信模板消息
  • 微信服務(wù)號(hào)推送模板消息接口
  • php實(shí)現(xiàn)發(fā)送微信模板消息的方法
  • C#微信開發(fā)之接收 / 返回文本消息

標(biāo)簽:咸寧 固原 賀州 吉林 池州 廣元 樂(lè)山 淮北

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp.net開發(fā)微信公眾平臺(tái)之獲取用戶消息并處理》,本文關(guān)鍵詞  asp.net,開發(fā),微信,公眾,平臺(tái),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp.net開發(fā)微信公眾平臺(tái)之獲取用戶消息并處理》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于asp.net開發(fā)微信公眾平臺(tái)之獲取用戶消息并處理的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章