以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 企业微信网页授权直接跳转到菜单的网址 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=148864) |
-- 作者:饭浇盖 -- 发布时间:2020/4/17 7:41:00 -- 企业微信网页授权直接跳转到菜单的网址 我在菜单栏设置了一个按钮 访问网址 www.dntextile.com/views/index/html 然后在网页首选时在request中设置了以下代码,为什么每次点击菜单栏的按钮时 直接跳转带按钮设置的网址,没有进行以下验证 Dim e As RequestEventArgs=args(0) If e.host = "www.dntextile.com" Then \'需要授权才能访问的域名 Dim UserId As String Dim UserName As String Dim sb As New StringBuilder \'sb.AppendLine("<meta name=\'viewport\' c>") If e.GetValues.ContainsKey("code") Then \'如果通过授权链接跳转而来,就根据传递过来的code参数调用接口,获取用户的UserId \'MessageBox.show("code") Dim ul As String = "https://qyapi.weixin.qq.com/cgi-bin/user/getuserinfo?access_token={0}&code={1}" ul = CExp(ul,Functions.Execute("GetQYAccessToken1",Functions.Execute("GET","企业微信",1)),e.GetValues("code")) Dim hc As new HttpClient(ul) Dim jo As JObject = JObject.Parse(hc.GetData) If jo("UserId") IsNot Nothing Then UserId = jo("UserId") End If Else UserId = e.Cookies("userid") \'否则从cookie中提取userid和username End If Dim Verified As Boolean Dim dr As DataRow = DataTables("user").Find("userid =\'" & UserId & "\'") \'根据openid找出对应的行 If UserId > "" AndAlso dr IsNot Nothing AndAlso dr("permit") = True \'授权成功 Verified = True UserName = dr("name") e.AppendCookie("userid",UserId) \'将userid和username存储在Cookie中 ElseIf e.GetValues.ContainsKey("code") = False Then \'如果授权失败,且不是通过授权链接跳转而来,那么就跳转到授权链接 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" Dim ul2 As String = UrlEncode("http://www.dntextile.com/views/index.html") ul1 = CExp(ul1,Functions.Execute("GET","企业微信",0),ul2,"123") sb.Append("<meta http-equiv=\'Refresh\' c>") \'跳转到授权链接 e.WriteString(sb.ToString) Return Nothing End If If Verified = False Then sb.AppendLine("你无权访问本系统") Else sb.AppendLine("欢迎" & UserName & " , <a href=\'http://wexin.foxtable.com\'>刷新页面</a>") End If e.WriteString(sb.ToString) End If |
-- 作者:饭浇盖 -- 发布时间:2020/4/17 7:47:00 -- 我在微信开发工具中访问生成的 授权网址时可以 得到http://www.dntextile.com/views/index.html?code=####################&state=123 这样的地址 但是狐表中不会跳转 |
-- 作者:有点蓝 -- 发布时间:2020/4/17 8:33:00 -- 代码不完整。把函数,以及httprequest事件完整代码放到txt发上来 |
-- 作者:饭浇盖 -- 发布时间:2020/4/17 9:56:00 -- 我可能知道原因了,因为我的网页服务器 跟狐表在同一个服务器,然后 点击按钮直接去访问网页服务器 而不经过狐表 |
-- 作者:饭浇盖 -- 发布时间:2020/4/17 10:02:00 -- 我的意思是我的网页 跟 企业微信用了用一个狐表做服务器 |
-- 作者:有点蓝 -- 发布时间:2020/4/17 10:06:00 -- 通过e.host、e.Path等判断区分开即可 比如企业微信统一是:http://www.dntextile.com/qiye/xxxx.html 其它网页统一是:http://www.dntextile.com/aaaa/xxxx.html 判断凡是qiye开头的路径都是企业微信使用的
|