ASP.NET WeChat 개발 인터페이스 가이드 상세 소개

高洛峰
풀어 주다: 2017-03-10 14:34:34
원래의
2059명이 탐색했습니다.

이 글에서는 ASP.NET WeChat 개발 인터페이스 가이드를 자세히 소개합니다. WeChat 공개 플랫폼의 개발은 비교적 간단합니다. 관심 있는 친구들이 참고할 수 있습니다.

공개 플랫폼 사용자가 정보를 제출한 후 WeChat 서버가 전송합니다. GET 요청은 채워진 URL로 이동하여 다음 4개의 매개변수를 가져옵니다.

ASP.NET WeChat 개발 인터페이스 가이드 상세 소개

개발자는 서명을 확인하여 요청을 확인합니다(아래 확인 방법이 있음). 해당 GET 요청이 WeChat 서버에서 오는 것으로 확인되면 echostr 매개변수 내용을 그대로 반환해 주셔야 접속이 적용되고, 그렇지 않으면 접속이 실패됩니다.

서명은 개발자가 입력한 토큰 매개변수와 요청의 타임스탬프 매개변수 및 nonce 매개변수를 결합합니다.

암호화/검증 과정:

  • 1. 세 가지 매개변수 토큰, 타임스탬프, nonce를 사전순으로 정렬합니다.

  • 2. sha1 암호화를 위해 세 개의 매개변수 문자열을 하나의 문자열로 연결합니다

  • 3. 개발자는 암호화된 문자열을 서명과 비교할 수 있습니다.

/// <summary> 
 /// 验证签名 
 /// </summary> 
 /// <param name="signature"></param> 
 /// <param name="timestamp"></param> 
 /// <param name="nonce"></param> 
 /// <returns></returns> 
 public static bool CheckSignature(String signature, String timestamp, String nonce) 
 { 
 String[] arr = new String[] { token, timestamp, nonce }; 
 // 将token、timestamp、nonce三个参数进行字典序排序 
 Array.Sort<String>(arr); 
 
 StringBuilder content = new StringBuilder(); 
 for (int i = 0; i < arr.Length; i++) 
 { 
  content.Append(arr[i]); 
 } 
 
 String tmpStr = SHA1_Encrypt(content.ToString()); 
 
 
 // 将sha1加密后的字符串可与signature对比,标识该请求来源于微信 
 return tmpStr != null ? tmpStr.Equals(signature) : false; 
 } 
 
 
 /// <summary> 
 /// 使用缺省密钥给字符串加密 
 /// </summary> 
 /// <param name="Source_String"></param> 
 /// <returns></returns> 
 public static string SHA1_Encrypt(string Source_String) 
 { 
 byte[] StrRes = Encoding.Default.GetBytes(Source_String); 
 HashAlgorithm iSHA = new SHA1CryptoServiceProvider(); 
 StrRes = iSHA.ComputeHash(StrRes); 
 StringBuilder EnText = new StringBuilder(); 
 foreach (byte iByte in StrRes) 
 { 
  EnText.AppendFormat("{0:x2}", iByte); 
 } 
 return EnText.ToString(); 
 }
로그인 후 복사


접속 후 일반 WeChat 사용자에게 메시지 푸시가 전송됩니다. 공개 계정에 메시지를 보내면 WeChat 서버는 채워진 URL에 메시지를 게시합니다.

 protected void Page_Load(object sender, EventArgs e) 
 { 
 
 if (Request.HttpMethod.ToUpper() == "GET") 
 { 
  // 微信加密签名 
  string signature = Request.QueryString["signature"]; 
  // 时间戳 
  string timestamp = Request.QueryString["timestamp"]; 
  // 随机数 
  string nonce = Request.QueryString["nonce"]; 
  // 随机字符串 
  string echostr = Request.QueryString["echostr"]; 
  if (WeixinServer.CheckSignature(signature, timestamp, nonce)) 
  { 
  Response.Write(echostr); 
  } 
 
 } 
 else if (Request.HttpMethod.ToUpper() == "POST") 
 { 
 
  StreamReader stream = new StreamReader(Request.InputStream); 
  string xml = stream.ReadToEnd(); 
 
  processRequest(xml); 
 } 
 
 
 } 
 
 
 /// <summary> 
 /// 处理微信发来的请求 
 /// </summary> 
 /// <param name="xml"></param> 
 public void processRequest(String xml) 
 { 
 try 
 { 
 
  // xml请求解析 
  Hashtable requestHT = WeixinServer.ParseXml(xml); 
 
  // 发送方帐号(open_id) 
  string fromUserName = (string)requestHT["FromUserName"]; 
  // 公众帐号 
  string toUserName = (string)requestHT["ToUserName"]; 
  // 消息类型 
  string msgType = (string)requestHT["MsgType"]; 
 
  //文字消息 
  if (msgType == ReqMsgType.Text) 
  { 
  // Response.Write(str); 
 
  string content = (string)requestHT["Content"]; 
  if(content=="1") 
  { 
   // Response.Write(str); 
   Response.Write(GetNewsMessage(toUserName, fromUserName)); 
   return; 
  } 
  if (content == "2") 
  { 
   Response.Write(GetUserBlogMessage(toUserName, fromUserName)); 
   return; 
  } 
  if (content == "3") 
  { 
   Response.Write(GetGroupMessage(toUserName, fromUserName)); 
   return; 
  } 
  if (content == "4") 
  { 
   Response.Write(GetWinePartyMessage(toUserName, fromUserName)); 
   return; 
  } 
  Response.Write(GetMainMenuMessage(toUserName, fromUserName, "你好,我是vinehoo,")); 
 
  } 
  else if (msgType == ReqMsgType.Event) 
  { 
  // 事件类型 
  String eventType = (string)requestHT["Event"]; 
  // 订阅 
  if (eventType==ReqEventType.Subscribe) 
  { 
   
   Response.Write(GetMainMenuMessage(toUserName, fromUserName, "谢谢您的关注!,")); 
   
  } 
  // 取消订阅 
  else if (eventType==ReqEventType.Unsubscribe) 
  { 
   // TODO 取消订阅后用户再收不到公众号发送的消息,因此不需要回复消息 
  } 
  // 自定义菜单点击事件 
  else if (eventType==ReqEventType.CLICK) 
  { 
   // TODO 自定义菜单权没有开放,暂不处理该类消息 
  } 
  } 
  else if (msgType == ReqMsgType.Location) 
  { 
  } 
 
 
 } 
 catch (Exception e) 
 { 
  
 } 
 }<pre name="code" class="csharp"> protected void Page_Load(object sender, EventArgs e) 
 { 
 
 if (Request.HttpMethod.ToUpper() == "GET") 
 { 
  // 微信加密签名 
  string signature = Request.QueryString["signature"]; 
  // 时间戳 
  string timestamp = Request.QueryString["timestamp"]; 
  // 随机数 
  string nonce = Request.QueryString["nonce"]; 
  // 随机字符串 
  string echostr = Request.QueryString["echostr"]; 
  if (WeixinServer.CheckSignature(signature, timestamp, nonce)) 
  { 
  Response.Write(echostr); 
  } 
 
 } 
 else if (Request.HttpMethod.ToUpper() == "POST") 
 { 
 
  StreamReader stream = new StreamReader(Request.InputStream); 
  string xml = stream.ReadToEnd(); 
 
  processRequest(xml); 
 } 
 
 
 } 
 
 
 /// <summary> 
 /// 处理微信发来的请求 
 /// </summary> 
 /// <param name="xml"></param> 
 public void processRequest(String xml) 
 { 
 try 
 { 
 
  // xml请求解析 
  Hashtable requestHT = WeixinServer.ParseXml(xml); 
 
  // 发送方帐号(open_id) 
  string fromUserName = (string)requestHT["FromUserName"]; 
  // 公众帐号 
  string toUserName = (string)requestHT["ToUserName"]; 
  // 消息类型 
  string msgType = (string)requestHT["MsgType"]; 
 
  //文字消息 
  if (msgType == ReqMsgType.Text) 
  { 
  // Response.Write(str); 
 
  string content = (string)requestHT["Content"]; 
  if(content=="1") 
  { 
   // Response.Write(str); 
   Response.Write(GetNewsMessage(toUserName, fromUserName)); 
   return; 
  } 
  if (content == "2") 
  { 
   Response.Write(GetUserBlogMessage(toUserName, fromUserName)); 
   return; 
  } 
  if (content == "3") 
  { 
   Response.Write(GetGroupMessage(toUserName, fromUserName)); 
   return; 
  } 
  if (content == "4") 
  { 
   Response.Write(GetWinePartyMessage(toUserName, fromUserName)); 
   return; 
  } 
  Response.Write(GetMainMenuMessage(toUserName, fromUserName, "你好,我是vinehoo,")); 
 
  } 
  else if (msgType == ReqMsgType.Event) 
  { 
  // 事件类型 
  String eventType = (string)requestHT["Event"]; 
  // 订阅 
  if (eventType==ReqEventType.Subscribe) 
  { 
   
   Response.Write(GetMainMenuMessage(toUserName, fromUserName, "谢谢您的关注!,")); 
   
  } 
  // 取消订阅 
  else if (eventType==ReqEventType.Unsubscribe) 
  { 
   // TODO 取消订阅后用户再收不到公众号发送的消息,因此不需要回复消息 
  } 
  // 自定义菜单点击事件 
  else if (eventType==ReqEventType.CLICK) 
  { 
   // TODO 自定义菜单权没有开放,暂不处理该类消息 
  } 
  } 
  else if (msgType == ReqMsgType.Location) 
  { 
  } 
 
 
 } 
 catch (Exception e) 
 { 
  
 } 
 }
로그인 후 복사

로그인 후 복사


위 내용은 ASP.NET WeChat 개발 인터페이스 가이드의 관련 내용을 소개한 내용이므로 모든 분들의 학습에 도움이 되기를 바랍니다. .

위 내용은 ASP.NET WeChat 개발 인터페이스 가이드 상세 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿