码迷,mamicode.com
首页 > 微信 > 详细

微信订阅号,获取用户openid

时间:2017-06-18 10:33:08      阅读:410      评论:0      收藏:0      [点我收藏+]

标签:from   没有   cat   分享   res   switch   配置文件   open   itblog   

在微信后台,启用服务器配置。
技术分享

服务器URL地址,要通过Token的验证。

      private void Auth()
        {
            string token = ConfigurationManager.AppSettings["WeixinToken"];//从配置文件获取Token
            if (string.IsNullOrEmpty(token))
            {               
                LogTextHelper.Error(string.Format("WeixinToken 配置项没有配置!"));
            }

            string echoString = HttpContext.Current.Request.QueryString["echoStr"];
            string signature = HttpContext.Current.Request.QueryString["signature"];
            string timestamp = HttpContext.Current.Request.QueryString["timestamp"];
            string nonce = HttpContext.Current.Request.QueryString["nonce"];

            if (CheckSignature(token, signature, timestamp, nonce))
            {
                if (!string.IsNullOrEmpty(echoString))
                {
                    HttpContext.Current.Response.Write(echoString);
                    HttpContext.Current.Response.End();
                }
            }
        }

  关注订阅号,发一个文本消息。里面有用户的openid

   /// <summary>
        /// 主入口
        /// </summary>
        /// <param name="msg"></param>
        private void OnRecvEvent(ReqMsgEventBase msg)
        {
            switch (msg.Event)
            {
                case Event.LOCATION:
                    break;
                case Event.subscribe:
                     string content = “openid=”+msg.FromUserName;
                    SendResponseText(msg, content);
                    break;
                case Event.unsubscribe:
                    break;
                default:
                    break;
            }

        }            

  

微信订阅号,获取用户openid

标签:from   没有   cat   分享   res   switch   配置文件   open   itblog   

原文地址:http://www.cnblogs.com/zitjubiz/p/7043144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!