Foxtable(狐表)用户栏目专家坐堂 → [求助]公众号授权的问题


  共有2770人关注过本帖树形打印复制链接

主题:[求助]公众号授权的问题

帅哥哟,离线,有人找我吗?
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110669 积分:563259 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/4/5 21:31:00 [显示全部帖子]

设置授权链接的时候增加一个cookie,判断这个cookie是否有值,如果有说明拒绝

Else
dim a as string = e.Cookies("authorize")
if a = "1" then
        With wb.AddMsgPage("","msgpage","请退出","您已拒绝授权,请关闭页面退出")
        
End With
e.WriteString(wb.Build
return
end if
Dim wb As New weui
    OpenID = e.Cookies("openid")
    If userName = "" OrElse OpenID = "" Then
        Dim ul1 As String  = "https://open.weixin.qq.com/connect/oauth2/authorize?appid={0}&redirect_uri={1}&response_type=code&scope=snsapi_userinfo&state={2}#wechat_redirect"
        Dim ul2 As String = UrlEncode("http://" & vars("域名") & "/" & url) '包装原基本URL
        ul1 = CExp(ul1,vars("AppId"),ul2,"123")
        wb.InsertHTML("<meta http-equiv='Refresh' c>") '跳转到授权链接
wb.AppendCookie("authorize","1")
        e.WriteString(wb.Build)
        Return ""
    End If
End If

 回到顶部