以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 判断是否为微信客户端 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=189587) |
-- 作者:ycs5801 -- 发布时间:2023/12/10 19:25:00 -- 判断是否为微信客户端 weui中浏览网页时,怎样判断是否是从微信客户端进入浏览的? |
-- 作者:ycs5801 -- 发布时间:2023/12/10 19:33:00 -- 我现在这个需求是,浏览这个网页时,可能在微信中,也可能是手机的浏览器,如果是在微信中浏览,我要获取当前用户 的openid,并且保存在对应的用户资料中。如果不是微信中浏览,就不用管,正常操作就行。 |
-- 作者:有点蓝 -- 发布时间:2023/12/10 21:01:00 -- 使用授权模式进入这个网页:http://www.foxtable.com/mobilehelp/topics/0235.htm,通过授权码获取openid。如果有授权码,并且能够获取到openid,肯定就是微信客户端 |
-- 作者:ycs5801 -- 发布时间:2023/12/10 21:07:00 -- 如果我用非微信的浏览器进入网页,这样跳到授权页面,会提示需要在微信客户端中打开吧?没法进行授权的 |
-- 作者:有点蓝 -- 发布时间:2023/12/10 21:52:00 -- 这是一个矛盾,没有办法。 如果不通过授权,就算是在微信里打开也无法获取openid的。如果通过授权打开,普通浏览器就用不了。
|
-- 作者:ycs5801 -- 发布时间:2023/12/10 22:13:00 -- 所以我这个思路可行不,如果是在微信里,则获取授权,如果不在微信里,则正常浏览 |
-- 作者:有点蓝 -- 发布时间:2023/12/10 22:38:00 -- 试试 Select Case e.Path Case "test.htm" If e.Request.Headers("User-Agent").ToLower.Contains("micromessenger") Then \'在微信中打开 MsgBox("在微信打开") If e.GetValues.ContainsKey("code") = False Then \'如果没有授权码 Dim url As String = e.Request.URL.ToString Dim sb As New StringBuilder sb.AppendLine("<meta name=\'viewport\' content=\'width=device-width,initial-scale=1,user-scalable=1\'>") Dim ul As String = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx8acdb7df5beb68fd&redirect_uri=" & UrlEncode(url) & "&response_type=code&scope=snsapi_base&state=123#wechat_redirect" sb.Append("<meta http-equiv=\'Refresh\' content=\'0; url=" & ul & "\'>") \'跳转到授权链接 e.WriteString(sb.ToString) \'使用授权链接重新打开网页 Return End If \'获取openid的代码 Else MsgBox("没有在微信打开") End If \'其它页面代码 End Select |
-- 作者:ycs5801 -- 发布时间:2023/12/10 23:13:00 -- If e.host = "wexin.foxtable.com" Then \'需要授权才能访问的域名 帮助中“简单网页授权”中的这段代码,我标注黄色这句不是太理解,访问这个网页时,如果从上至下运行,开始肯定是没有包含code,那么也e.Cookies中为什么会包含openid了呢? |
-- 作者:有点蓝 -- 发布时间:2023/12/11 8:33:00 -- If e.GetValues.ContainsKey("code") Then \'如果通过授权链接跳转而来,就根据传递过来的code参数调用接口,获取用户的OpenID Dim ul As String = "https://api.weixin.qq.com/sns/oauth2/access_token?appid={0}&secret={1}&code={2}&grant_type=authorization_code" ul = CExp(ul, "wx8acdb7df5beb68fd", "a5a3b06a790d4200a151e6b13c3dc263", e.GetValues("code")) Dim hc As New HttpClient(ul) Dim jo As JObject = JObject.Parse(hc.GetData) If jo("openid") IsNot Nothing Then OpenID = jo("openid") e.AppendCookie("openid", OpenID) \'将openid存储在Cookie中 End If Else 否则从cookie取值 OpenId = e.Cookies("openid") \'否则从cookie中提取openid End If Dim Verified As Boolean Dim dr As DataRow = DataTables("WXUsers").Find("openid =\'" & OpenID & "\'") \'根据openid找出对应的行 If OpenId > "" AndAlso dr IsNot Nothing AndAlso dr("permit") = True Then\'说明授权成功,不管是从code授权码获取的还是从cookie获取的 Verified = True ElseIf e.GetValues.ContainsKey("code") = False Then \'如果授权失败,说明即没有code授权码,也没有cookie值 Dim ul As String = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx8acdb7df5beb68fd&redirect_uri=http%3a%2f%2fwexin.foxtable.com&response_type=code&scope=snsapi_base&state=123#wechat_redirect" sb.Append("<meta http-equiv=\'Refresh\' c>") \'跳转到授权链接 e.WriteString(sb.ToString) Return End If
|
-- 作者:ycs5801 -- 发布时间:2023/12/11 19:58:00 -- Dim openid As String
getopenid函数: Dim e As RequestEventArgs = args(0)
Verified = True Dim ul1 As String = "https://open.weixin.qq.com/connect/oauth2/authorize?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_base&state={2}#wechat_redirect" |