国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

? ?? ??? ?? ?? .NET WeChat ??? PC?? ???? ???? ?? ? ??? ?? ??? ?? ??? ??

.NET WeChat ??? PC?? ???? ???? ?? ? ??? ?? ??? ?? ??? ??

Apr 26, 2017 pm 02:51 PM
pc

? ?? .NET WeChat?? ??? PC? WeChat ?? ?? ?? ? ??? ?? ??? ?? ?? ??? ?? ?????. ?? ?? ??? ??? ???? ??? ? ????. >

1. ???

?? ? ?? ??? ??? ?????? ??? ??? ?? ??????. ?? ???? ?? ??? ?? ??? ?? ?? ??? ???? ???.


WeChat ??? ?? ????? ??? ??? ?? ??? ?????, ????? ??? ????? ?? ??? ? ???? ??? WeChat ??? ?? ?????. ?? ?? ?? ? ?? ??? ????? WeChat? PC? ???? ??? ?? ??? ????. PC? ?? WeChat??? ??? ? ????? ???? ? ??? ???. ?, PC?? WeChat?? "??? ?????"(?? ???? ??? ??)???.


2. ???? ???

???? ???? ???? WeChat? ??? ?? ??? ??? ? ???, ??? PC ???? ??? ??? ??? ?? ???? ? ??? ???? ??? ????. ?? ??? ???? ??? ?? ??? ?????


1. ?? ???? ??? ??? ?? PC? ?????? ??? ?? ???.


? ??? ?? ???? ??? ????. WeChat? ??? ??? ? ????? ??? ?? ? ???? ?? ?? ??? ????? "??"???. ?? ??? ???? PC? ????? ?? ??? ????? ?? ????? ??? ? ????. ?? ?? ???? ???? ?????, ??? ??? ????? ???? ?? ????.


??: ??? ??? ?? ?? ?? ??? ????. ?? ??? WeChat ???, ??? ?? ??? ??? ?? ?????.


2. PC??? ?? ????, ?? ??? ??????? ??? ??????


?? ????? ?? ??? ?? ??. ????? ??? ????.


?? 1: ???? PC? ??? ? ???? WeChat ???? ???? ?? ?? "??"???. WeChat ?? ? ?? ???? ?????. ??? ????? ?? ???? ??? ?? ???? ??? ??? ??? ? ????? ? ??? ??? ??????.

?? 2: WeChat ??? ???? PC ??? ??? ? ???? ??? ??? ??? "??" ???? ???. ?? ?? ??? ?????. ???? ???? ???? ???? ???. ??? ????? ?? ??? ? ????(???? ????). ??? ??? ?? ??? ??? ?????. ??? ??? 2??? PC?? ??? ? ??? ????, ??? ??? ? ??? ?????. ??? ???? ??? ???????. ???? PC??? ??? ??? ??? ???(????? ??? ??), ???? ???? ???? ???? ????. ??, ? ???? ? ?? ???? ?? ???? ??? ??? ???? ?? ????. ?? ??? ??? ?? ???? ??????. ? ?? ??? ?? ?? ????? ???? ??? ???? ???? ? ????.


3. ????? ?? ?? ??

??: ?? ?? ???? ??? ???? ?? ?? ???? ????. ??? ??? ???? ?? ??? ???? ??? ?????. ?? ???? ?? ???? ?????. ?????? ??? ??? ??? ????? ???? ?? ??? ???? ?????. ??? ??? ????? ????, ??? ID ??? ?? ??? ??? ??? ?? ?? ??? ??? ??? ? ????.


?? ????? ?? ? ??? ?? ? ?? ????? ?? ???? ?? ????. WeChat?? openid?? ??? ??? ????. ??? ??? ID ?? ??? ??? ??? ??? ????. WeChat ??? ?? ?? ??? ???? ?????.


WeChat ??? ?? ????? ??? openid??? WeChat ??? ??? ??? ?? ????. ??? ???? ??? ? openid? ?? ?? PC?? ??? ???????. ??? ?? ????? ??? ??. PC?? ????? ??? ? QR ??? ???? ???? WeChat? ???? ??? ???? ?? ???? ??? ? ??? ?????. ? ????? ?? ??? ?? ??? ?? ????. QR ??? ?? ?? ?? ??(authCode)? ?????. ???? ???? ??? ???? openid? authCode? ??????? ? ? ??? ??? ???. ?? ?? PC ? API? ?? authCode? ??? openid? ?? ? ????. ??? ?? ?? PC?? ?? ?? ????? ?? QR ??? ???? ?? ??? ???? ? ? ????(???? ?? ?? ??, ??? ?? ?? ???). ??? ?? ?? ??????? ?? ? ? ?????? ????? ?? ???? ????


PC ?? ???? ??? ??

?? ??

????? ????? ??? ? ?, ?? ??? ???????. ?? ????? ???? ?? ??? ?? ??? ?????.

??: ?? ??? MVC + EF? ???? C# ??? ?? ?????(??: uuid? ??? ??? authCode? ?????)

QR ??? ???? ??????. ??? ??? ??

public ActionResult Login()
{
//如果已登錄,直接跳轉(zhuǎn)到首頁
if (User.Identity.IsAuthenticated)
return RedirectToAction("Index", "Home");
string url = Request.Url.Host;
string uuid = Guid.NewGuid().ToString();
ViewBag.url = "http://" + url + "/home/loginfor?uuid=" + uuid;//構(gòu)造授權(quán)鏈接
ViewBag.uuid = uuid;//保存 uuid
return View();
}

? ???? jquery.qrcode.js? ???? QR ??? ?????. ?? ?? ? ?? ?? ??? Github? ?????. . ??? ??? ?? ?????? QR ?? ?? ??, ??? ?? ???? ??? ? ??? ????. IE? ???? ?? ??? ???? ???? ????? ?????

??? ??? ????. :

jQuery('#qrcode').qrcode({
render : "table",
text : "http://baidu.com"
});

?? ???? ???? ??? ???? ?? ??? ??? ????

<!--生成二維碼的容器 p-->
<p id="qrcode-container">
</p>
<script src="~/Plugins/Jquery/jquery-1.9.1.min.js"></script>
<script src="~/Plugins/jquery-qrcode/jquery.qrcode.min.js"></script>
<script>
jQuery(function () {
//生成二維碼
jQuery(&#39;#qrcode-container&#39;).qrcode("@ViewBag.url");
//輪詢判斷用戶是否授權(quán)
var interval = setInterval(function () {
$.post("@Url.Action("UserLogin","Home")", { "uuid": "@ViewBag.uuid" }, function (data, status) {
if ("success" == status) {
//用戶成功授權(quán)=>跳轉(zhuǎn)
if ("success" == data) {
window.location.href = &#39;@Url.Action("Index", "Home")&#39;;
clearInterval(interval);
}
}
});
}, 200);
})
</script>

???? API ??? ????? ??? ???? ??

public string UserLogin(string uuid)
{
//驗(yàn)證參數(shù)是否合法
if (string.IsNullOrEmpty(uuid))
return "param_error";
WX_UserRecord user = db.WX_UserRecord.Where(u => u.uuId == uuid).FirstOrDefault();
if (user == null)
return "not_authcode";
//寫入cookie
FormsAuthentication.SetAuthCookie(user.OpenId, false);
//清空uuid
user.uuId = null;
db.SaveChanges();
return "success";
}

WeChat ?? ??

public ActionResult Loginfor(string uuid)
{
#region 獲取基本信息 - snsapi_userinfo
/*
* 創(chuàng)建微信通用類 - 這里代碼比較復(fù)雜不在這里貼出
* 遲點(diǎn)我會(huì)將整個(gè) Demo 稍微整理放上 Github
*/
WechatUserContext wxcontext = new WechatUserContext(System.Web.HttpContext.Current, uuid);
//使用微信通用類獲取用戶基本信息
wxcontext.GetUserInfo();
if (!string.IsNullOrEmpty(wxcontext.openid))
{
uuid = Request["state"];
//判斷數(shù)據(jù)庫是否存在
WX_UserRecord user = db.WX_UserRecord.Where(u => u.OpenId == wxcontext.openid).FirstOrDefault();
if (null == user)
{
user = new WX_UserRecord();
user.OpenId = wxcontext.openid;
user.City = wxcontext.city;
user.Country = wxcontext.country;
user.CreateTime = DateTime.Now;
user.HeadImgUrl = wxcontext.headimgurl;
user.Nickname = wxcontext.nickname;
user.Province = wxcontext.province;
user.Sex = wxcontext.sex;
user.Unionid = wxcontext.unionid; 
user.uuId = uuid;
db.WX_UserRecord.Add(user);
}
user.uuId = uuid;
db.SaveChanges();
}
#endregion
return View();
}

????? ?????? ??? ???? ?????

??? ?? ????. ??? ? ????? ??? ?? uuId? ?? ? ???? ???. by WeChat

WeChat ????? ?? ??? ??? WeChat ??? ??? ?????

?? ??

1. QR??? ???? ???? ??????

2.

3. ??? ?? ??


PC ??? ??


? ??? .NET WeChat ??? PC?? ???? ???? ?? ? ??? ?? ??? ?? ??? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? ????? ??
? ?? ??? ????? ???? ??? ??????, ???? ?????? ????. ? ???? ?? ???? ?? ??? ?? ????. ???? ??? ???? ???? ??? ?? admin@php.cn?? ?????.

? AI ??

Undresser.AI Undress

Undresser.AI Undress

???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover

AI Clothes Remover

???? ?? ???? ??? AI ?????.

Video Face Swap

Video Face Swap

??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

???

??? ??

???++7.3.1

???++7.3.1

???? ?? ?? ?? ???

SublimeText3 ??? ??

SublimeText3 ??? ??

??? ??, ???? ?? ????.

???? 13.0.1 ???

???? 13.0.1 ???

??? PHP ?? ?? ??

???? CS6

???? CS6

??? ? ?? ??

SublimeText3 Mac ??

SublimeText3 Mac ??

? ??? ?? ?? ?????(SublimeText3)

???

??? ??

??? ????
1601
29
PHP ????
1502
276
???
Windows PC?? ??? ??? ????? ?? ??? ???? ?? Windows PC?? ??? ??? ????? ?? ??? ???? ?? Mar 16, 2024 pm 03:19 PM

Windows 11/10 PC?? Wi-Fi ??? ?? ??? ???? ??? ? "??? ???? ????? ?? ????"?? ??? ???? ?? ?? ????? ???? ??? ?? ??? ??? ?? ?? ??? ?????. ? ??? ???? ???? ????? ????? ?? ??? ??? ????. 1. ?? ??? ???? ?? ?? ??? ??? ??? ??? ?? ??????. 2. Wi-Fi ??? ?? ??? ???? ?? ???? ???? ??? ??? IP ??? ?? ?????. 3. PC? Wi-Fi ??? ????? ???? ????, ?? ???? ?? ????? ?????. 4. ??? ??? ??? ?? ? ?? ?? ??? ??? ? ???? ?? ??? ??? ????. 5. AccessP ??? ??????

??? ??? PC? ??? ????? ??? ??? PC? ??? ????? Aug 10, 2023 pm 04:34 PM

PC? "Personal Computer"? ???? ???? ?????. ??? ???? ???? ?? ? ????, ????? ????? ????, ???? ???? ? ??? ? ?? ????? ??? ?????. ????, ??? ??? ??? ???? ??? ?? ??? ??? ???? ???? ???. ?? ???? ??? ???? ?? ???? ?? ??? ??? ??? ?? ??? ????? ???.

Windows PC? BIOS? ?? ???? ?? [??] Windows PC? BIOS? ?? ???? ?? [??] Mar 11, 2024 am 09:40 AM

Windows PC? BIOS ?????? ?? ???? ?? ??? ???? ??? ? ????. ???? ? ??? BIOS ??? ???? ?? ???? ??? ?? ????. ? ??? ??? ?? ? ???? ???? ???? ??? ? ????. ???? ?? BIOS? ???? ??? ?????? BIOS ???? ???? ?? ?? ???? ??? ???? ?? ?? ??, ??? SATA ???, ??? ??, BIOS ?? ?? ?? ?? ???? ?? ? ??? ??? ?? ??? ? ????. Windows PC? BIOS? ?? ???? ?? ?? Windows PC? ?? BIOS? ???? ?? ?? ?? ??? ?????. ?? ??? ???? ?? ??????.

?? OneDrive ??? PC? ? ?? ?????? ?? ?? OneDrive ??? PC? ? ?? ?????? ?? Feb 19, 2024 pm 06:51 PM

? ????? ?? OneDrive ??? PC? ? ?? ?????? ??? ?????. OneDrive? ???? ?? ???? ??? ???? ? ?? ??? ???? ??? ??????. ??? ?? ???? ??? ??? ????? ?????? ????? ? ?? ????. ? ??? ?? ???? ??? ????? ?? ?????. ?? OneDrive ??? PC? ? ?? ?????? ??? ?????? ?? OneDrive ??? Windows PC? ? ?? ??????? ?? ??? ????. Onedrive? ???? ? ??? ?????. OneDrive? ???? ?? ??? ???? ??? ? ????. Ctrl+A? ?? ?? ??? ????? ???? ???? ?? ?? ??? ?????. ??? ???? ??? ????,

?? FPS? ??? ?! '?? ??' ??? ???? ????? ?? FPS? ??? ?! '?? ??' ??? ???? ????? Mar 07, 2024 am 09:37 AM

'????? ??'? ??(3? 7?) '????: ZERO'?? ??? PC ???? ????. ?? ?? ? ??? ????? ???? ???? ????? ?????, 17173? ??? ?? ???? ??. ?? ??? ?? ?????? ?? 4????? ?? ?? ????, ? ?? ?? ?? '?? ??'? ?? ??? ???? ???? ???? ???? ????. 4??? ? ???? ???? ??? ? ?? ?? ???? 'Operation Delta'? ??????. ?? ??? '??? ??' ??? ?????. ??? ?? ??? ????? ?? ????????. ?? ????? ??? ?? ??? ???? ???? ?? ??? ???? FPS

Windows 11 Lite: ?? ? PC? ???? ?? Windows 11 Lite: ?? ? PC? ???? ?? Apr 14, 2023 pm 11:19 PM

??? Microsoft Windows 11? ?? ??? ??? ????? ??? ?? ???? ?? ?? ????. ??? ????? Windows 11 Lite ??? ??? ????. Windows 11? ??? ??? ????? ???? ?? ???? ?? ???, ??? ???? ???? ??? ? ?? ??? ??? ???? ?? ? ????. ? ????? Windows 11 Lite ??? ???, ?????? ????? ?? ?? ?? ?? ??? ????. ???! Windows 11 Lite ??? ???? ??? ????? ?? Windows 11 Lite 21H2 ??? Neelkalpa T?? ???????.

Windows PC?? Samsung Flow? ???? ?? Windows PC?? Samsung Flow? ???? ?? Feb 19, 2024 pm 07:54 PM

SamsungFlow? Galaxy ???? Windows PC? ?? ??? ? ?? ???? ???? ?????. SamsungFlow? ???? ?? ? ??? ??, ?? ???, ???? ??? ?? ???? ??? ? ????. ? ???? Windows ????? SamsungFlow? ???? ??? ?????. Windows PC?? ???? ????? ???? ?? SamsungFlow? ???? Windows PC? Galaxy Phone? ????? Galaxy ????? ????? Android 7.0 ??? ????, Windows PC?? Windows 10 ??? ???? ??? ???? ???.

300??? ?? ??? ???? ?? ?? ??? ?? ????? ??????. 300??? ?? ??? ???? ?? ?? ??? ?? ????? ??????. Apr 12, 2024 am 08:07 AM

2023?? AI ???? ????? 2024?? AI ?? ?? ???? ?? ?? ? ???? ??. ????? ??? ?? AI ??? AI ??????? ?? ????, ??, ?? ? ????? 'AI ????'? ??? ?? ???/?? ?? ??? ???? ???? ????. "?? ??? ??? ????? ??????. ?? ???? ?? ??? ????? ?? ? ?? ???? ????. ?? ?? ???? ???? ? ?? ??? AI ??????? ?? ?? "????"? ???? ??? ? ? ????. ?? ??? ???? ??? ? ?? ??? ????? ?? ????? ?? ????? 5,000??? ?? ??? AIPC???.

See all articles