基本信息
源码名称:[ASP.NET] 使用 OAuth 2.0 整合 Google、Facebok、WindowsLive(MSN)登陆实例 API SDK,附完整源码
源码大小:0.52M
文件格式:.rar
开发语言:C#
更新时间:2013-04-18
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
实例效果图:
登陆代码:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Net; using System.IO; using MultiOAuth.Core; using MultiOAuth.Core.Service; using MultiOAuth.Core.Client; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void ImageButton1_Click(object sender, ImageClickEventArgs e) { var context = MultiOAuthContext.Create(MultiOAuthFactroy.CreateClient<GoogleClinet>("Google")); try { context.BeginAuth(); } catch (Exception) { throw; } } protected void ImageButton2_Click(object sender, ImageClickEventArgs e) { var context = MultiOAuthContext.Create(MultiOAuthFactroy.CreateClient<FacebookClient>("Facebook")); try { context.BeginAuth(); } catch (Exception) { throw; } } protected void ImageButton3_Click(object sender, ImageClickEventArgs e) { var context = MultiOAuthContext.Create(MultiOAuthFactroy.CreateClient<WindowsLiveClient>( "", "", "", "wl.basic,wl.emails", "~/Accepted.aspx", "~/Default.aspx" )); try { context.BeginAuth(); } catch (Exception) { throw; } } protected void btnLogin_Click(object sender, EventArgs e) { string loginId = txtLoginID.Text.Trim(); string passowrd = txtPassword.Text.Trim(); SecurityDao dao = new SecurityDao(); string uid = dao.QueryAccountUID(loginId, passowrd); if (uid != "") { Response.Redirect(string.Format("Success.aspx?UID={0}", uid)); } else { Response.Write("查無該帳號。"); } } }
返回代码:
protected void Page_Load(object sender, EventArgs e) { string token = MultiOAuthContext.Current.Token; if (token != "") { var profile = MultiOAuthContext.Current.Profile; string id = profile["id"].ToString(); string source = profile["source"].ToString(); string name = profile["name"].ToString(); SecurityDao dao = new SecurityDao(); switch (source) { case "Google": id = "gl_" id; break; case "Facebook": id = "fb_" id; break; case "WindowsLive": id = "wl" id; break; } if (dao.QueryAccountIsExist(id)) { Response.Redirect(string.Format("Success.aspx?UID={0}", id)); } else { dao.InsertAccount(id, name, source); Response.Redirect(string.Format("Success.aspx?UID={0}", id)); } } else { Response.Redirect("failed.aspx"); } }