zoukankan      html  css  js  c++  java
  • 微信授权(Net Mvc)

    项目结构

    在这里插入图片描述

    WeiXinController.cs

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Mvc;
    using System.IO;
    using System.Text;
    using System.Xml;
    using System.Net;
    using Newtonsoft.Json;
    
    using WeChat2.Models;
    
    namespace WeChat2.Controllers
    {
        using Senparc.Weixin.MP;
        public class WeiXinController : Controller
        {
            string token = "garfieldzf8";
    
            string appID = "wx3475193134aa161e";
            string appsecret = "10c0994def4d52442a2edde4ce1843cf";
    
    
            [HttpGet]
            [ActionName("Index")]
            public ActionResult Get(string signature, string timestamp, string nonce, string echostr)
            {
                if (CheckSignature.Check(signature, timestamp, nonce, token))
                {
                    return Content(echostr);
                }
                else
                {
                    return Content("err");
                }
    
            }
    
            [HttpPost]
            [ActionName("Index")]
            public ActionResult Get(string signature, string timestamp, string nonce)
            {
                StreamReader sr = new StreamReader(Request.InputStream, Encoding.UTF8);
                XmlDocument doc = new XmlDocument();
                doc.Load(sr);
                sr.Close();
                sr.Dispose();
    
                WxMessage wxMessage = new WxMessage();
                wxMessage.ToUserName = doc.SelectSingleNode("xml").SelectSingleNode("ToUserName").InnerText;
                wxMessage.FromUserName = doc.SelectSingleNode("xml").SelectSingleNode("FromUserName").InnerText;
                wxMessage.MsgType = doc.SelectSingleNode("xml").SelectSingleNode("MsgType").InnerText;
                wxMessage.CreateTime = int.Parse(doc.SelectSingleNode("xml").SelectSingleNode("CreateTime").InnerText);
    
                Log(wxMessage.ToUserName + "," + wxMessage.FromUserName + "," + wxMessage.MsgType);
    
                if (wxMessage.MsgType == "event")
                {
                    wxMessage.EventName = doc.SelectSingleNode("xml").SelectSingleNode("Event").InnerText;
                    Log(wxMessage.EventName);
                    if (!string.IsNullOrEmpty(wxMessage.EventName) && wxMessage.EventName == "subscribe")
                    {
                        string content = "您好,欢迎访问garfieldzf8测试公众平台
    ";
                        content += "<a href='" + Request.Url.Host + Url.Action("OAuthSnsApiBase") + "'>SnsApiBase</a>
    ";
                        content += "<a href='" + Request.Url.Host + Url.Action("OAuthSnsApiUserInfo") + "'>SnsApiUserInfo</a>";
                        content = SendTextMessage(wxMessage, content);
                        Log(content);
    
                        return Content(content);
                    }
                }
    
    
                return Content("");
            }
    
            private string SendTextMessage(WxMessage wxmessage, string content)
            {
                string result = string.Format(Message, wxmessage.FromUserName, wxmessage.ToUserName, DateTime.Now.Ticks, content);
                return result;
            }
    
            /**
             * snsapi_base
             * **/
            public ActionResult OAuthSnsApiBase()
            {
                string code = Request.QueryString["code"];
                try
                {
                    if (!string.IsNullOrEmpty(code))
                    {
    
                        OAuthToken oauthToken = HttpUtility.Get<OAuthToken>(string.Format("https://api.weixin.qq.com/sns/oauth2/access_token?appid={0}&secret={1}&code={2}&grant_type=authorization_code", appID, appsecret, code));
    
                        string accesstoken = string.Empty;
                        AccessToken token = HttpUtility.Get<AccessToken>(string.Format("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={0}&secret={1}", appID, appsecret));
    
                        if (token != null && !string.IsNullOrEmpty(token.access_token))
                        {
                            accesstoken = token.access_token;
                        }
    
                        if (oauthToken != null && !string.IsNullOrEmpty(oauthToken.openid))
                        {
    
                            OAuthUserInfo userInfo = HttpUtility.Get<OAuthUserInfo>(string.Format("https://api.weixin.qq.com/cgi-bin/user/info?access_token={0}&openid={1}&lang=zh_CN", accesstoken, oauthToken.openid));
                            if (userInfo != null)
                            {
    
                                Log("获取到用户信息nickName:" + userInfo.nickname);
                                ViewData["headImage"] = userInfo.headimgurl;
                                ViewData["openid"] = userInfo.openid;
                                ViewData["nickName"] = userInfo.nickname;
                                if (userInfo.sex == 0)
                                {
                                    ViewData["sex"] = "未知";
                                }
                                else if (userInfo.sex == 1)
                                {
                                    ViewData["sex"] = "男";
                                }
                                else
                                {
                                    ViewData["sex"] = "女";
                                }
                                ViewData["province"] = userInfo.province;
                                ViewData["city"] = userInfo.city;
                            }
                            else
                            {
                                Log("未获取到用户信息");
                            }
                        }
                        else
                        {
                            Log("access_token:" + oauthToken.access_token + ",openid:" + oauthToken.openid);
                        }
    
    
    
                    }
                    else
                    {
                        return Redirect(string.Format("https://open.weixin.qq.com/connect/oauth2/authorize?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_base&state=123456#wechat_redirect", appID, "http://" + Request.Url.Host + Url.Action("OAuthSnsApiBase")));
                    }
                }
                catch (Exception ex)
                {
                    Log(ex.Message);
                    ViewData["errmsg"] = ex.Message;
                }
    
                return View();
            }
    
    
            /**
             * snsapi_userinfo
             * **/
            public ActionResult OAuthSnsApiUserInfo()
            {
                string code = Request.QueryString["code"];
                try
                {
                    if (!string.IsNullOrEmpty(code))
                    {
                        OAuthToken oauthToken = HttpUtility.Get<OAuthToken>(string.Format("https://api.weixin.qq.com/sns/oauth2/access_token?appid={0}&secret={1}&code={2}&grant_type=authorization_code", appID, appsecret, code));
    
    
                        if (oauthToken != null && !string.IsNullOrEmpty(oauthToken.openid) && !string.IsNullOrEmpty(oauthToken.access_token))
                        {
    
                            OAuthUserInfo userInfo = Get<OAuthUserInfo>(string.Format("https://api.weixin.qq.com/sns/userinfo?access_token={0}&openid={1}&lang=zh_CN", oauthToken.access_token, oauthToken.openid));
                            if (userInfo != null)
                            {
    
                                Log("获取到用户信息nickName:" + userInfo.nickname);
                                ViewData["headImage"] = userInfo.headimgurl;
                                ViewData["openid"] = userInfo.openid;
                                ViewData["nickName"] = userInfo.nickname;
                                if (userInfo.sex == 0)
                                {
                                    ViewData["sex"] = "未知";
                                }
                                else if (userInfo.sex == 1)
                                {
                                    ViewData["sex"] = "男";
                                }
                                else
                                {
                                    ViewData["sex"] = "女";
                                }
                                ViewData["province"] = userInfo.province;
                                ViewData["city"] = userInfo.city;
                            }
                            else
                            {
                                Log("未获取到用户信息");
                            }
                        }
                        else
                        {
                            Log("access_token:" + oauthToken.access_token + ",openid:" + oauthToken.openid);
                        }
    
                    }
                    else
                    {
                        return Redirect(string.Format("https://open.weixin.qq.com/connect/oauth2/authorize?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_userinfo&state=123456#wechat_redirect", appID, Server.UrlEncode("http://" + Request.Url.Host + Url.Action("OAuthSnsApiUserInfo"))));
                    }
                }
                catch (Exception ex)
                {
                    Log(ex.Message);
                    ViewData["errmsg"] = ex.Message;
                }
    
                return View();
            }
    
    
            //被动回复用户消息
            public string Message
            {
                get
                {
                    return @"<xml>
                                <ToUserName><![CDATA[{0}]]></ToUserName>
                                <FromUserName><![CDATA[{1}]]></FromUserName>
                                <CreateTime>{2}</CreateTime>
                                <MsgType><![CDATA[text]]></MsgType>
                                <Content><![CDATA[{3}]]></Content>
                                </xml>";
                }
            }
    
            private void Log(string text)
            {
                string str = Server.MapPath("~/Log/") + "log.txt";
                FileStream fs = new FileStream(str, FileMode.Append, FileAccess.Write);
                StreamWriter sr = new StreamWriter(fs);
                sr.WriteLine(DateTime.Now + " : " + text);
                sr.Close();
                fs.Close();
            }
    
    
            public T Get<T>(string url)
            {
                HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
                request.Method = "get";
                request.Timeout = 2000;
                HttpWebResponse response = (HttpWebResponse)request.GetResponse();
                StreamReader sr = new StreamReader(response.GetResponseStream(), System.Text.Encoding.UTF8);
    
                string result = sr.ReadToEnd();
                Log("result:" + result);
                return JsonConvert.DeserializeObject<T>(result);
    
    
            }
    
        }
    
        public class HttpUtility
        {
            public static T Get<T>(string url)
            {
                HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
                request.Method = "get";
                request.Timeout = 2000;
                HttpWebResponse response = (HttpWebResponse)request.GetResponse();
                StreamReader sr = new StreamReader(response.GetResponseStream(), System.Text.Encoding.UTF8);
    
                string result = sr.ReadToEnd();
    
                return JsonConvert.DeserializeObject<T>(result);
    
    
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284

    实体类

    OAuthToken.cs

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    
    namespace WeChat2.Models
    {
        public class OAuthToken
        {
            public string access_token { get; set; }
            public int expires_in { get; set; }
            public string refresh_token { get; set; }
            public string openid { get; set; }
            public string scope { get; set; }
    
        }
    
        public class AccessToken
        {
            public string access_token { get; set; }
            public int expires_in { get; set; }
        }
    
        public class OAuthUserInfo
        {
            public string openid { get; set; }
            public string nickname { get; set; }
            public int sex { get; set; }
            public string province { get; set; }
            public string city { get; set; }
            public string country { get; set; }
            public string headimgurl { get; set; }
            public string privilege { get; set; }
            public string unionid { get; set; }
    
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37

    WxMessage.cs

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    
    namespace WeChat2.Models
    {
        public class WxMessage
        {
            public string ToUserName { get; set; }
            public string FromUserName { get; set; }
            public long CreateTime { get; set; }
    
            public string Content { get; set; }
            public string MsgType { get; set; }
            public string EventName { get; set; }
            public string EventKey { get; set; }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    视图

    OAuthSnsApiBase.cshtml

    @{
        Layout = null;
    }
    <!DOCTYPE html>
    <html>
    <head>
        <meta name="viewport" content="width=device-width" />
        <title>OAuthSnsApiBase</title>
    </head>
    <body>
        <h1>OAuthSnsApiBase</h1>
        @if (ViewData["errmsg"] != null)
        {
            <h1>@ViewData["errmsg"]</h1>
        }
        else
        {
            <h2>@ViewData["nickName"]</h2>
            <h2>@ViewData["sex"]</h2>
            <h2>@ViewData["province"]</h2>
            <h2>@ViewData["city"]</h2>
            <h2>@ViewData["headImage"]</h2>
        }
    </body>
    </html>

    OAuthSnsApiUserInfo.cshtml

    
    @{
        Layout = null;
    }
    <!DOCTYPE html>
    <html>
    <head>
        <meta name="viewport" content="width=device-width" />
        <title>OAuthSnsApiUserInfo</title>
    </head>
    <body>
        <h1>OAuthSnsApiUserInfo</h1>
        @if (ViewData["errmsg"] != null)
        {
            <h1>@ViewData["errmsg"]</h1>
        }
        else
        {
            <h2>@ViewData["nickName"]</h2>
            <h2>@ViewData["sex"]</h2>
            <h2>@ViewData["province"]</h2>
            <h2>@ViewData["city"]</h2>
            <h2>@ViewData["headImage"]</h2>
        }
    </body>
    </html>
    

     

  • 相关阅读:
    AtCoder Grand Contest 033
    Luogu P6620 [省选联考 2020 A 卷] 组合数问题
    Luogu P6631 [ZJOI2020] 序列
    Luogu P6630 [ZJOI2020] 传统艺能
    Luogu P6633 [ZJOI2020] 抽卡
    Luogu P6623 [省选联考 2020 A 卷] 树
    AtCoder Grand Contest 034
    Luogu P5445 [APIO2019] 路灯
    LOJ #6059. 「2017 山东一轮集训 Day1」Sum
    Luogu P3721 [AH2017/HNOI2017]单旋
  • 原文地址:https://www.cnblogs.com/zxtceq/p/10033533.html
Copyright © 2011-2022 走看看