微信網頁授權登入(c# Webform)
##Default.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1,webkit=1,IE=edge" />
<meta name="viewport" content="user-scalable=no,width=device-width,initial-scale=1.0,maximum-scale=1.0" />
<title>微信授權登入</title>
</head>
<body>
</body>
</html>
##Default.aspx.cs
using System;
using Newtonsoft.Json;
public partial class _Default : WeiXinPage
{
protected override void OnLoad(EventArgs e)
{
Response.Write(JsonConvert.SerializeObject(Data));
base.OnLoad(e);
}
}
##WeiXinPage.cs
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using Newtonsoft.Json;
/// <summary>
/// WeiXin 的摘要說明
/// </summary>
public abstract class WeiXinPage : Page, IRequiresSessionState
{
/// <summary>
/// 是否訪客身份 true:是 false:否
/// </summary>
public static bool isGuest
{
get { return HttpContext.Current.Session[_user] == null ? true : false; }
}
private static string _user
{
get { return "$wxuser"; }
}
private static string _code
{
get { return "$wxcode"; }
}
private static string _AbsoluteUri
{
get { return HttpContext.Current.Request.Url.AbsoluteUri; }
}
/// <summary>
/// 該路徑剔除微信Query的URL用於頁面重定向獲取最新的使用者資訊
/// </summary>
private static string _RawUrl
{
get
{
var url = HttpContext.Current.Request.Url.AbsoluteUri;
url = url.Replace(url.Substring(url.IndexOf("code"), url.IndexOf("STATE") + 5 - url.IndexOf("code")), "");
return url;
}
}
/// <summary>
/// 微信使用者資訊
/// </summary>
public Dictionary<string, object> Data
{
get { return getWxUser(); }
}
protected sealed override void OnPreInit(EventArgs e)
{
if (isGuest)
{
getWxUser();
}
base.OnPreInit(e);
}
/// <summary>
/// 獲取微信使用者資訊
/// </summary>
private static Dictionary<string, object> getWxUser()
{
string code = HttpContext.Current.Request.QueryString.Get("code") ?? "",
url = "",
ret = "";
try
{
var user = HttpContext.Current.Session[_user];
if (code.Length == 0 && user == null)
{
JumpUrl();
return null;
}
if (user != null)
return
JsonConvert.DeserializeObject<Dictionary<string, object>>(
HttpContext.Current.Session[_user].ToString());
#region /*如果session中不存在user資訊則對接微信介面獲取使用者資訊*/
/* 根據code獲取access_token */
url =
string.Format(
"https://api.weixin.qq.com/sns/oauth2/access_token?appid={0}&secret={1}&code={2}&grant_type=authorization_code"
, Config.AppId
, Config.AppSecret
, code);
ret = HttpService.Get(url);
var o = JsonConvert.DeserializeObject<Dictionary<string, string>>(ret);
#region 注意處理微錯誤{"errcode":40163, "errmsg":"code been used"} 以及{"errcode":40029, "errmsg":"invalid code"}
if (o.ContainsKey("errmsg"))
{
if (o["errcode"] == "40163" || o["errcode"] == "40029")
{
HttpContext.Current.Response.Redirect(_RawUrl, false);
return null;
}
throw new Exception(o["errmsg"]);
}
#endregion
/* 根據access_token和openid獲取使用者資訊 */
url = string.Format("https://api.weixin.qq.com/sns/userinfo?access_token={0}&openid={1}&lang=zh_CN"
, o["access_token"]
, o["openid"]);
ret = HttpService.Get(url);
/*儲存使用者到Session*/
HttpContext.Current.Session[_user] = ret;
#endregion
return
JsonConvert.DeserializeObject<Dictionary<string, object>>(HttpContext.Current.Session[_user].ToString());
}
catch
{
throw;
}
}
/// <summary>
/// 跳轉至微信授權登入頁
/// </summary>
private static void JumpUrl()
{
var url =
string.Format(
"https://open.weixin.qq.com/connect/oauth2/authorize?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect"
, Config.AppId
, _AbsoluteUri);
HttpContext.Current.Response.Redirect(url, false);
}
}
##HttpService.cs
using System;
using System.Collections.Specialized;
using System.Net;
using System.Text;
/// <summary>
/// HttpService 的摘要說明
/// </summary>
public class HttpService
{
public static string Get(string url)
{
using (var c = new WebClient())
{
try
{
c.Encoding = Encoding.UTF8;
return c.DownloadString(url);
}
catch (Exception)
{
throw;
}
}
}
public static string GetPost(string url, string parameters)
{
var ret = "";
using (var c = new WebClient())
{
try
{
c.Encoding = Encoding.UTF8;
var data = Encoding.UTF8.GetBytes(parameters);
c.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
c.Headers.Add("ContentLength", parameters.Length.ToString());
ret = Encoding.UTF8.GetString(c.UploadData(url, "POST", data));
return ret;
}
catch (Exception)
{
throw;
}
}
}
public static string GetPost(string url, NameValueCollection nv)
{
using (var c = new WebClient())
{
try
{
c.Encoding = Encoding.UTF8;
return Encoding.UTF8.GetString(c.UploadValues(url, "POST", nv));
}
catch (Exception)
{
throw;
}
}
}
}
##Config.cs
using System.Collections.Generic;
using System.Net;
using System.Text;
using System.Web;
using System.Web.SessionState;
using Newtonsoft.Json;
/// <summary>
/// 微信公眾號配置檔案
/// </summary>
public class Config : IRequiresSessionState
{
/// <summary>
/// 開發者ID
/// </summary>
public static string AppId { get; set; }
/// <summary>
/// 開發者密碼
/// </summary>
public static string AppSecret { get; set; }
/// <summary>
/// APP access_token 7200秒更新一次
/// </summary>
public static string access_token
{
get
{
try
{
if (HttpContext.Current.Session["$access_token"] == null)
{
using (var wc = new WebClient())
{
wc.Encoding = Encoding.UTF8;
var ret =
wc.DownloadString(
string.Format(
"https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={0}&secret={1}",
AppId, AppSecret));
var o = JsonConvert.DeserializeObject<Dictionary<string, object>>(ret);
if (o.ContainsKey("errmsg")) return o["errmsg"].ToString();
HttpContext.Current.Session.Add("$access_token", o["access_token"].ToString());
HttpContext.Current.Session.Timeout = 7200;
return o["access_token"].ToString();
}
}
return HttpContext.Current.Session["$access_token"].ToString();
}
catch
{
throw;
}
}
}
}
##Global.asax
<%@ Application Language="C#" %>
<script RunAt="server">
private void Application_Start(object sender, EventArgs e)
{
// 在應用程式啟動時執行的程式碼
Config.AppId = "wx*********aaaa";
Config.AppSecret = "5454564564646546465456";
}
private void Application_End(object sender, EventArgs e)
{
// 在應用程式關閉時執行的程式碼
}
private void Application_Error(object sender, EventArgs e)
{
// 在出現未處理的錯誤時執行的程式碼
}
private void Session_Start(object sender, EventArgs e)
{
// 在新會話啟動時執行的程式碼
}
private void Session_End(object sender, EventArgs e)
{
// 在會話結束時執行的程式碼。
// 注意: 只有在 Web.config 檔案中的 sessionstate 模式設定為
// InProc 時,才會引發 Session_End 事件。如果會話模式設定為 StateServer
// 或 SQLServer,則不引發該事件。
}
</script>
相關文章
- C#微信網頁授權登入(NET MVC)C#網頁MVC
- ajax 實現微信網頁授權登入網頁
- .NET Core企業微信網頁授權登入網頁
- 小程式登入、微信網頁授權(Java版)網頁Java
- 微信授權登入
- 微信網頁授權網頁
- 原生微信網頁授權登入(藉助natapp穿牆)網頁APP
- 第三方微信登入 | 靜默授權與網頁授權的實現網頁
- java 微信授權登入配置Java
- 微信開發筆記——微信網頁登入授權,獲取使用者資訊筆記網頁
- 微信小程式的授權登入微信小程式
- 微信網頁靜默授權網頁
- Java微信授權登入小程式介面Java
- #聊聊微信小程式使用者授權登入,無感知登入,強制授權~~~微信小程式
- 微信網頁授權視訊教程網頁
- uni-app 微信小程式授權登入APP微信小程式
- 微信小程式授權登入最佳實踐微信小程式
- [微信開發] 微信網頁授權Java實現網頁Java
- Laravel 微信 Token 配置 與微信網頁授權操作Laravel網頁
- 微信網頁授權登入回撥多個二級域名站的處理方法網頁
- 微信網頁登入授權流程都不清楚,還說自己是3年前端?網頁前端
- 微信授權註冊或微信登陸 微信授權登陸 基於若依vue 實現Vue
- 【網頁登入】QQ 登入、微信登入、微博登入、GitHub 登入網頁Github
- 微信公眾號開發 —— 微信網頁授權小記網頁
- 微信開發-微信網頁開發-授權多次回撥網頁
- Vue微信專案按需授權登入策略實踐Vue
- Spring Security中實現微信網頁授權Spring網頁
- 微信公眾號開發Django 網頁授權Django網頁
- WebForm登入頁面(連線資料庫)WebORM資料庫
- 微信小程式授權登入獲取使用者資訊微信小程式
- 微信分享、網頁授權、客服傳送資訊外掛網頁
- 微信網頁授權並獲取使用者資訊網頁
- 關於QQ授權登入
- 基於Taro框架的微信小程式JWT授權登入方案框架微信小程式JWT
- Android社交登入授權、分享SDK,支援微信、微博和QQAndroid
- 微信公眾號網頁授權中轉功能-解決網頁授權域名個數限制-透過已授權的域名進行中轉網頁
- laravel使用EasyWeChat 授權登入Laravel
- 微信小程式版部落格——授權登入的修改(wx.getUserInfo)微信小程式