作者:Jolina | 来源:互联网 | 2023-09-05 15:07
微信登录(网站应用)ASP.NET
第一步:请求CODE.
第二步:通过CODE获取access_token.
第三步:通过access_token调用接口
代码在底部
官方开发指南(指南已经说的很清楚了)
官方流程图:
第一步:
第三方使用网站应用授权登录前请注意已获取相应网页授权作用域(scope=snsapi_login),则可以通过在PC端打开以下链接:
https://open.weixin.qq.com/connect/qrconnect?appid=APPID&redirect_uri=REDIRECT_URI&response_type=code&scope=SCOPE&state=STATE#wechat_redirect
若提示“该链接无法访问”,请检查参数是否填写错误,如redirect_uri的域名与审核时填写的授权域名不一致或scope不为snsapi_login
请求示例
登录一号店网站应用
https://passport.yhd.com/wechat/login.do
打开后,一号店会生成state参数,跳转到
https://open.weixin.qq.com/connect/qrconnect?appid=wxbdc5610cc59c1631&redirect_uri=https%3A%2F%2Fpassport.yhd.com%2Fwechat%2Fcallback.do&response_type=code&scope=snsapi_login&state=3d6be0a4035d839573b04816624a415e#wechat_redirect
微信用户使用微信扫描二维码并且确认登录后,PC端会跳转到
https://passport.yhd.com/wechat/callback.do?code=CODE&state=3d6be0a4035d839573b04816624a415e
第二步:
https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=SECRET&code=CODE&grant_type=authorization_code
第三步:(我调用的是获取个人信息接口)
获取用户个人信息(UnionID机制)
接口说明
此接口用于获取用户个人信息。开发者可通过OpenID来获取用户基本信息。特别需要注意的是,如果开发者拥有多个移动应用、网站应用和公众帐号,可通过获取用户基本信息中的unionid来区分用户的唯一性,因为只要是同一个微信开放平台帐号下的移动应用、网站应用和公众帐号,用户的unionid是唯一的。换句话说,同一用户,对同一个微信开放平台下的不同应用,unionid是相同的。请注意,在用户修改微信头像后,旧的微信头像URL将会失效,因此开发者应该自己在获取用户信息后,将头像图片保存下来,避免微信头像URL失效后的异常情况。
请求说明
http请求方式: GET
https://api.weixin.qq.com/sns/userinfo?access_token=ACCESS_TOKEN&openid=OPENID
代码:
//=======【微信开放平台应用基本信息设置】
/* 微信登录信息配置
* L_APPID:微信开放平台应用的APPID
* L_APPSECRET:微信开放平台应用asecert
* L_QRCONNECTION :请求code 地址
* L_REDIRECTURL :重定向地址(必须进行UrlEncode)
*/
public partial class redirectPage : System.Web.UI.Page
{
string state = WxPayApi.GenerateNonceStr();
Session["validState"] = state;
string wxLoginPage = WxPayConfig.L_QRCONNECTION + "appid=" + WxPayConfig.L_APPID + "&redirect_uri=" + HttpUtility.UrlEncode(WxPayConfig.L_REDIRECTURL) + "&response_type=code&scope=snsapi_login&state=" + state + "#wechat_redirect";
Response.Redirect(wxLoginPage);
}
用户进行扫码后,重定向到配置的redirect_uri 页面,此页面代码:
public partial class wxLoginRedirectURL : System.Web.UI.Page
{
private static JavascriptSerializer jss = null;
private static BLL.User user = null;
private static Model.UserEntity uentity = null;
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
string code = Request.QueryString["code"] ?? "";
if (!string.IsNullOrEmpty(code))
{
string state = Request.QueryString["state"] ?? "";
if (!string.IsNullOrEmpty(Session["validState"].ToString()) && !string.IsNullOrEmpty(state))
{
if (Equals(Session["validState"].ToString(), state))
{
string duserid = 1;
string getTokenUrl = WxPayConfig.L_ACCESSTOKEN + "appid=" + WxPayConfig.L_APPID + "&secret=" + WxPayConfig.L_APPSECRET + "&code=" + code + "&grant_type=authorization_code";
string tokenResult = HttpService.Get(getTokenUrl);
jss = new JavascriptSerializer();
TokenResult obj = jss.Deserialize(tokenResult);
if (string.IsNullOrEmpty(obj.errcode))
{
user = new BLL.User();
string wxUserInfoUrl = WxPayConfig.L_SNSUSERINFO + "access_token=" + obj.access_token + "&openid=" + obj.openid;
string userInfoResult = HttpService.Get(wxUserInfoUrl);
UserInfoResult uobj = jss.Deserialize(userInfoResult);
Model.UserEntity IsExistEntity = user.SelectByUserName(uobj.unionid);
if (IsExistEntity != null)
{
Session["uid"] = IsExistEntity.Id;
Model.UserEntity pentity = user.Select(Convert.ToInt32(duserid));
Response.Redirect(pentity.DomainLevel);
}
else
{
uentity = new Model.UserEntity();
uentity.Name = uobj.nickname;
uentity.UserName = uobj.unionid;
uentity.Description = uobj.headimgurl;
if (!string.IsNullOrEmpty(duserid))
{
uentity.ParentId = Convert.ToInt32(duserid);
}
int uid = user.Save(uentity);
if (uid > 0)
{
Session["uid"] = uid;
Model.UserEntity pentity = user.Select(Convert.ToInt32(duserid));
if (pentity != null)
{
Response.Redirect(" pentity.DomainLevel);
}
else
{
Log.Info("pentity=", "null");
Response.Redirect("~/custompage/err.htm");
}
}
}
}
else
{
// 失败
Log.Info("反序列化openid", obj.errcode + ":" + obj.errmsg);
// 转走
Response.Redirect("~/custompage/err.htm");
}
}
else
{
//校验失败
Response.Redirect("~/custompage/err.htm");
}
}
else
{
//state 或Session["validState"] 为null/空
Log.Info("session[validstate]", Session["validState"].ToString());
}
}
else
{ //用户禁止授权
Response.Redirect("~/main.aspx");
}
}
}
}
#region定义的序列化类
///
/// 获取微信用户信息
///
public class UserInfoResult : PubClass
{
public string nickname { get; set; }
public string province { get; set; }
public string city { get; set; }
public string country { get; set; }
public string headimgurl { get; set; }
public Array[] privilege { get; set; }
public string language { get; set; }
public int sex { get; set; }
}
///
/// access_token
///
public class TokenResult : PubClass
{
public string access_token { get; set; }
public string expires_in { get; set; }
public string refresh_token { get; set; }
public string scope { get; set; }
public string errcode { get; set; }
public string errmsg { get; set; }
}
///
/// 公有字段
///
public class PubClass
{
public string unionid { get; set; }
public string openid { get; set; }
}
#endregion