.NET C#使用微信公众号登录网站的案例

这篇文章给大家分享的是有关.NET C#使用微信公众号登录网站的案例的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

适用于:本文适用于有一定微信开发基础的用户  

引言:花了300大洋申请了微信公众平台后,发现不能使用微信公众号登录网站(非微信打开)获得微信帐号。仔细研究后才发现还要再花300大洋申请微信开放平台才能接入网站的登录。于是做为屌丝程序员的我想到了自己做一个登录接口。

工具和环境:1. VS2013 .net4.0 C# MVC4.0 Razor2.插件A. Microsoft.AspNet.SignalR;时时获取后台数据B.Gma.QrCodeNet.Encoding;文本生成二维码

实现的目标1. 在电脑上打开网站登录页,提示用户使用微信扫描登录确认。2.用户通过微信扫描确认后,电脑自动收到确认信息跳转到网站主页。

原理分析 1.SignalR是一个神奇的工具,能从浏览器A发送信息到服务器,服务器自动推送消息到指定的浏览器B。那么我的计划是用电脑的浏览器打开登录页,生成一个二维码(内容为带有微信公众平台网页用户受权的网址),用微信的描码功能打开这个网站。将获取的微信用户OPENID通过SignalR发送到电脑浏览器,实现登录功能

实现过程1.微信公从平台的注册和权限(略过...)2.VS2013中新建MVC网站,我用的环境为.NET4.0 C# MVC4.0 Razor引擎(个人习惯)。

.NET C#使用微信公众号登录网站的案例

3.安装 SignalR VS2013 点击工具 ==> 库程序包管理器 ==> 程序包管理控制台

输入以下命令: Install-Package Microsoft.AspNet.SignalR -Version 1.1.4

.net4.0 Mvc4环境下建议安装1.1.4高版本安装不上

安装 SingnalR成功

.NET C#使用微信公众号登录网站的案例

设置SignalR

.NET C#使用微信公众号登录网站的案例

var config = new Microsoft.AspNet.SignalR.HubConfiguration(); config.EnableCrossDomain = true; RouteTable.Routes.MapHubs(config);

新建一个类 PushHub.cs

usingMicrosoft.AspNet.SignalR;
usingMicrosoft.AspNet.SignalR.Hubs;
usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Web;
namespaceWD.C.Utility
{
///<summary>
///标注Singlejavascription要连接的名称
///</summary>
[HubName("pushHub")]
publicclassPushHub:Hub
{
///<summary>
///临时保存请求的用户
///</summary>
staticDictionary<string,string>rlist=newDictionary<string,string>();

///<summary>
///登录请求的用户;打开Login页执行本方法,用于记录浏览器连接的ID
///</summary>
publicvoidruserConnected()
{
if(!rlist.ContainsKey(Context.ConnectionId))
rlist.Add(Context.ConnectionId,string.Empty);

//Client方式表示对指定ID的浏览器发送GetUserId方法,浏览器通过javascrip方法GetUserId(string)得到后台发来的Context.ConnectionId
Clients.Client(Context.ConnectionId).GetUserId(Context.ConnectionId);
}
///<summary>
///实际登录的用户
///</summary>
///<paramname="ruser">请求的用户ID</param>
///<paramname="logUserID">微信OPENID</param>
publicvoidlogUserConnected(stringruser,stringlogUserID)
{
if(rlist.ContainsKey(ruser))
{
rlist.Remove(ruser);

//Client方式表示对指定ID的浏览器发送GetUserId方法,浏览器通过javascrip方法userLoginSuccessful(bool,string)得到后台发来的登录成功,和微信OPENID
Clients.Client(ruser).userLoginSuccessful(true,logUserID);
}
}
}
}

新建一个MVC控制器"LoginController.cs",这个不会看别的教程;

usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Web;
usingSystem.Web.Mvc;
namespaceWD.C.Controllers
{
publicclassLoginController:Controller
{
//
//GET:/Login/

///<summary>
///登录主页,电脑端打开
///</summary>
///<returns></returns>
publicActionResultIndex()
{
/*参考https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140842&token=&lang=zh_CN
*1.URL用于生成二维码给微信扫描
*2.格式参考微信公从平台帮助
*https://open.weixin.qq.com/connect/oauth3/authorize?appid=APPID&redirect_uri=REDIRECT_URI&response_type=code&scope=SCOPE&state=STATE#wechat_redirect若提示“该链接无法访问”,请检查参数是否填写错误,是否拥有scope参数对应的授权作用域权限。
*3.REDIRECT_URI内容为返回地址,需要开发者需要先到公众平台官网中的“开发-接口权限-网页服务-网页帐号-网页授权获取用户基本信息”的配置选项中,修改授权回调域名
*4.REDIRECT_URI应回调到WxLog页并进行URLEncode编码,如:redirect_uri=GetURLEncode("http://你的网站/Login/WxLog?ruser=");ruser为PushHub中的Context.ConnectionId到View中配置
*
*/
ViewBag.Url=string.Format("https://open.weixin.qq.com/connect/oauth3/authorize?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_base&state={2}#wechat_redirect",B.Helper.AppID,GetURLEncode("http://你的网站/Login/WxLog?ruser="),Guid.NewGuid());
returnView();
}

///<summary>
///登录确认页,微信端打开
///</summary>
///<paramname="ruser"></param>
///<returns></returns>
publicActionResultWxLog(stringruser)
{
//使用微信登录
if(!string.IsNullOrEmpty(code))
{
stringloguser=B.Helper.GetOpenIDByCode(code);
Session["LogUserID"]=loguser;
ViewBag.LogUserID=loguser;
}

ViewBag.ruser=ruser;
returnView();

}
}
}

控制器 "QRController.cs"用于文本生成二维码

usingSystem;
usingSystem.Collections.Generic;
usingSystem.Linq;
usingSystem.Web;
usingSystem.Web.Mvc;

namespaceWD.C.Controllers
{
publicclassQRController:Controller
{
//
//GET:/QR/

publicActionResultIndex()
{
returnView();
}
///<summary>
///获得2维码图片
///</summary>
///<paramname="str"></param>
///<returns></returns>
publicActionResultGetQRCodeImg(stringstr)
{
using(varms=newSystem.IO.MemoryStream())
{

stringstringtest=str;
GetQRCode(stringtest,ms);
Response.ContentType="image/Png";
Response.OutputStream.Write(ms.GetBuffer(),0,(int)ms.Length);
System.Drawing.Bitmapimg=newSystem.Drawing.Bitmap(100,100);
img.Save(ms,System.Drawing.Imaging.ImageFormat.Jpeg);
Response.End();
returnFile(ms.ToArray(),@"image/jpeg");
}
}
privatestaticboolGetQRCode(stringstrContent,System.IO.MemoryStreamms)
{

Gma.QrCodeNet.Encoding.ErrorCorrectionLevelEcl=Gma.QrCodeNet.Encoding.ErrorCorrectionLevel.M;//误差校正水平
stringContent=strContent;//待编码内容
Gma.QrCodeNet.Encoding.Windows.Render.QuietZoneModulesQuietZones=Gma.QrCodeNet.Encoding.Windows.Render.QuietZoneModules.Two;//空白区域
intModuleSize=12;//大小
varencoder=newGma.QrCodeNet.Encoding.QrEncoder(Ecl);
Gma.QrCodeNet.Encoding.QrCodeqr;
if(encoder.TryEncode(Content,outqr))//对内容进行编码,并保存生成的矩阵
{
varrender=newGma.QrCodeNet.Encoding.Windows.Render.GraphicsRenderer(newGma.QrCodeNet.Encoding.Windows.Render.FixedModuleSize(ModuleSize,QuietZones));
render.WriteToStream(qr.Matrix,System.Drawing.Imaging.ImageFormat.Png,ms);
}
else
{
returnfalse;
}
returntrue;
}
}
}

视图 开启SignalR var chat = $.connection.pushHub; $.connection.hub.start().done(function () { chat.server.ruserConnected(); });

$.connection.pushHub对应

.NET C#使用微信公众号登录网站的案例

chat.server.ruserConnected();对应

.NET C#使用微信公众号登录网站的案例

表示调用"pushHub"运行后执行 runserConnected方法,在临时表中增加当前浏览器的ConnectionID

chat.client.getUserId=function(ruserid)
{
  //二维码生成的文本
$("#loga").attr("src","@ViewBag.Url"+ruserid);
}

.NET C#使用微信公众号登录网站的案例

表示台后数据 收到数据后返回到游览器

chat.client.userLoginSuccessful=function(r,userid){
if(r){
$.post("/Login/AddSession/",{userid:userid},function(r2){
if(r2){
location.href="/Home/";
}
})
}
};

用户通过微信登录后

.NET C#使用微信公众号登录网站的案例

接收微信OpenID $.post("/Login/AddSession/", { userid: userid }, function (r2) {if (r2) {location.href = "/Home/";}})

执行 Post到后台增加登录信息,成功后转到/Home/主页

///<summary>
///保存微信确认登录后返回的OPENID,做为网站的Session["LogUserID"]
///</summary>
///<paramname="userid"></param>
///<returns></returns>
publicJsonResultAddSession(stringuserid)
{
Session["LogUserID"]=userid;
returnJson(true);
}

Login/WxLog.cshtml 本页在微信上打开

@{
ViewBag.Title="WxLog";
}
<scriptsrc="~/Scripts/jquery.signalR-1.1.4.min.js"></script>
<scriptsrc="~/signalr/hubs"></script>
<script>
$(function(){
//连接SignalRpushHab
varchat=$.connection.pushHub;
//启动
$.connection.hub.start().done();

$("#btnLog").click(function(){
//登录,发送信息到服务器
chat.server.logUserConnected("@ViewBag.ruser","@ViewBag.LogUserID");
});
});
</script>
<h3>WxLog</h3>

<ahref="#"id="btnLog">登录</a>

@{
ViewBag.Title="Index";
}
@Scripts.Render("~/bundles/jquery")
<scriptsrc="~/Scripts/jquery.signalR-1.1.4.min.js"></script>
<scriptsrc="~/signalr/hubs"></script>

<scripttype='text/javascript'>
$(function(){
varchat=$.connection.pushHub;
$.connection.hub.start().done(function(){
chat.server.ruserConnected();
});
chat.client.getUserId=function(ruserid)
{
$("#loga").attr("src","@ViewBag.Url"+ruserid);
}
chat.client.userLoginSuccessful=function(r,userid){
if(r){
location.href="/Home/";
})
}
};
});

</script>
<header>
<ahref="~/Home/"class="iconfontbackIcon"><</a>
<h2>用户登录</h2>
</header>
<pstyle="height:1rem;"></p>
请使用微信登录扫描以下二维码生产图片
<p>
<imgid="loga"src="#"width="90%"/>
</p>

.NET C#使用微信公众号登录网站的案例

GetOpenIDByCode(code)方法

对于已关注公众号的用户,如果用户从公众号的会话或者自定义菜单进入本公众号的网页授权页,即使是scope为snsapi_userinfo,也是静默授权,用户无感知。

具体而言,网页授权流程分为四步:1、引导用户进入授权页面同意授权,获取code 2、通过code换取网页授权access_token(与基础支持中的access_token不同) 3、如果需要,开发者可以刷新网页授权access_token,避免过期 4、通过网页授权access_token和openid获取用户基本信息(支持UnionID机制)

publicstaticstringGetOpenIDByCode(stringcode)
{
stringurl=string.Format("https://api.weixin.qq.com/sns/oauth3/access_token?appid={0}&secret={1}&code={2}&grant_type=authorization_code",AppID,AppSecret,code);
using(System.Net.WebClientclient=newSystem.Net.WebClient())
{
stringtempstr=client.DownloadString(url);
varregex=newRegex(@"\""openid\"":\""[^\""]+?\"",",RegexOptions.IgnoreCase);
stringtempstr2=regex.Match(tempstr).Value;
returntempstr2.Substring(10,tempstr2.Length-12);
}
}

感谢各位的阅读!关于“.NET C#使用微信公众号登录网站的案例”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

发布于 2021-03-13 15:39:22
收藏
分享
海报
0 条评论
165
上一篇:Bee.WeiXin微信框架的使用方法 下一篇:如何使用php调用微信接口上传永久素材
目录

    0 条评论

    本站已关闭游客评论,请登录或者注册后再评论吧~

    忘记密码?

    图形验证码