? ?? .NET WeChat?? ??? PC? WeChat ?? ?? ?? ? ??? ?? ??? ?? ?? ??? ?? ?????. ?? ?? ??? ??? ???? ??? ? ????. >
1. ??? ?? ? ?? ??? ?? ????? ??? ?? ??????. ??? ?????? ??? ?? ??? ?? ??? ?? ??? ?? ????? ?? ?? ????? ???? ?? ????. ???? ???? ???? ???. ?? ??? ?? ????? ??? ??? ?? ??? ?????, ????? ??? ????? ?? ??? ???? ?? ????. ?? ?? ?? ? ?? ??? ????? WeChat? PC? ???? ??? ?? ??? ????. PC? ?? WeChat??? ??? ? ????? ???? ? ??? ???. ?, PC?? ???? "??? ?????"(?? ???? ??? ??)???. 2. ???? ??? ?? ???? ???? ??? ??? ?? ?? ??? ?????, PC??? ??? ??? ???? ?? ????. , ????? ?. ?? ??? ???? ??? ?? ??? ?????
1. ?? ???? ??? ??? ?? PC? ?????? ??? ?? ???. ? ??? ?? ???? ??? ????. WeChat? ??? ??? ? ????? ??? ?? ? ???? ?? ?? ??? ????? "??"???. ?? ??? ???? PC? ????? ?? ??? ????? ?? ????? ??? ? ????. ?? ?? ???? ???? ?????, ??? ??? ????? ???? ?? ????. ??: ??? ??? ?? ?? ?? ??? ????. ?? ??? WeChat ???, ??? ?? ??? ??? ?? ?????. 2. PC?? ?? ????, ?? ?? ? ?????? ??? ?????? ?? ?? ???? ?? ???? ????. ????? ??? ????. ?? 1: ???? PC? ??? ? ???? WeChat ???? ???? ?? ?? "??"???. WeChat ?? ? ?? ???? ?????. ??? ????? ?? ???? ??? ?? ???? ??? ??? ??? ? ????? ? ??? ??? ??????. ?? 2: WeChat ??? ???? PC ??? ??? ? ???? ??? ??? ??? "??" ???? ???. ?? ?? ??? ?????. ???? ???? ???? ???? ???. ??? 3. ?? ??? ?? ?? ?? ??: ?? ?? ???? ??? ???? ?? ?? ?????. ??? ??? ???? ?? ??? ???? ??? ?????. ?? ???? ?? ???? ?????. ?????? ??? ??? ??? ????? ???? ?? ??? ???? ?????. ??? ??? ????? ????, ??? ID ??? ?? ??? ??? ??? ?? ?? ??? ??? ??? ? ????. WeChat ??? ?? ????? ??? openid??? WeChat ??? ??? ??? ?? ????. ??? ???? ??? ? openid? ?? ?? PC?? ??? ???????. ??? ?? ????? ??? ??. PC?? ????? ??? ? QR ??? ???? ???? WeChat? ???? ??? ???? ?? ???? ??? ? ??? ?????. ? ????? ?? ??? ?? ??? ?? ????. QR ??? ?? ?? ?? ??(authCode)? ?????. ???? ???? ??? ???? openid? authCode? ??????? ? ? ??? ??? ???. ?? ?? PC ?? ?? API? ?? authCode? ??? openid? ?? ? ????. ??? ?? ?? PC?? ?? ?? ????? ?? QR ??? ???? ?? ??? ???? ? ? ????(???? ?? ?? ??, ??? ?? ?? ???). ?? ?? ?????? ?????? ?? ??? ??????
PC ?? QR?? ?? ??? ??
?? ??
????? ????? ??? ? ?, ?? ??? ???????. ?? ????? ?????, ?? ??? ?? ???? ??? ?????.
??: ?? ??? MVC + EF? ???? C# ??? ?? ?????(??: uuid? ?? authCode? ?????)
??? ??? ?????? QR ??? ?????
public?ActionResult?Login() { //如果已登錄,直接跳轉(zhuǎn)到首頁(yè) 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> </p> <script></script> <script></script> <script> jQuery(function () { //生成二維碼 jQuery('#qrcode-container').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 = '@Url.Action("Index", "Home")'; 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ù)庫(kù)是否存在 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? ?? ? ???? ???. WeChat?? ???? ? ????
WeChat ???? ??? ?? ??? ??? WeChat ??? ???? ?????
?? ??
1. QR??? ???? ???? ??????
2. ??>
3. ??? ?? ??
PC ??? ??
? ??? .NET WeChat? ???? PC? WeChat ?? ??? ?? ? ??? ?? ?? ?? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? AI ??

Undress AI Tool
??? ???? ??

Undresser.AI Undress
???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover
???? ?? ???? ??? AI ?????.

Clothoff.io
AI ? ???

Video Face Swap
??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

?? ??

??? ??

???++7.3.1
???? ?? ?? ?? ???

SublimeText3 ??? ??
??? ??, ???? ?? ????.

???? 13.0.1 ???
??? PHP ?? ?? ??

???? CS6
??? ? ?? ??

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

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

PC? "Personal Computer"? ???? ???? ?????. ??? ???? ???? ?? ? ????, ????? ????? ????, ???? ???? ? ??? ? ?? ????? ??? ?????. ????, ??? ??? ??? ???? ??? ?? ??? ??? ???? ???? ???. ?? ???? ??? ???? ?? ???? ?? ??? ??? ??? ?? ??? ????? ???.
![Windows PC? BIOS? ?? ???? ?? [??]](https://img.php.cn/upload/article/000/887/227/171012121854600.jpg?x-oss-process=image/resize,m_fill,h_207,w_330)
Windows PC? BIOS ?????? ?? ???? ?? ??? ???? ??? ? ????. ???? ? ??? BIOS ??? ???? ?? ???? ??? ?? ????. ? ??? ??? ?? ? ???? ???? ???? ??? ? ????. ???? ?? BIOS? ???? ??? ?????? BIOS ???? ???? ?? ?? ???? ??? ???? ?? ?? ??, ??? SATA ???, ??? ??, BIOS ?? ?? ?? ?? ???? ?? ? ??? ??? ?? ??? ? ????. Windows PC? BIOS? ?? ???? ?? ?? Windows PC? ?? BIOS? ???? ?? ?? ?? ??? ?????. ?? ??? ???? ?? ??????.

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

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

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

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

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