Foxtable(狐表)用户栏目专家坐堂 → 微信公众号配置失败


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

主题:微信公众号配置失败

帅哥,在线噢!
qinqinwo1114
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:117 积分:1207 威望:0 精华:0 注册:2013/2/21 21:43:00
微信公众号配置失败  发帖心情 Post By:2024/11/8 9:52:00 [显示全部帖子]


图片点击可在新窗口打开查看此主题相关图片如下:222.png
图片点击可在新窗口打开查看
如图,请教一下,公众号测试,一直失败,单独访问http://zhuge.store/logon.htm,也都是成功的;
图片点击可在新窗口打开查看此主题相关图片如下:1111.png
图片点击可在新窗口打开查看

 回到顶部
帅哥,在线噢!
qinqinwo1114
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:117 积分:1207 威望:0 精华:0 注册:2013/2/21 21:43:00
  发帖心情 Post By:2024/11/8 11:46:00 [显示全部帖子]

Select Case e.path
    Case "logon.htm" '登录页面
        wb.AddPageTitle("", "pageheader", "售后管理系统", "")
        If e.PostValues.ContainsKey("username") AndAlso e.PostValues.ContainsKey("password") Then '判断是否是验证失败后的重新登录
            wb.AddTopTips("", "toptip1", "用户名或密码错误!").msec = 2000 '如果用户通过登录按钮访问,则给用户一个2秒的提示.
        End If
        wb.AddForm("", "form1", "logon.htm")
        With wb.AddInputGroup("form1", "ipg1")
            .AddInput("username", "户名", "text")
            .AddInput("password", "密码", "password")
        End With
        With wb.AddButtonGroup("form1", "btg1", True)
            .Add("btn1", "登录", "submit")
        End With
    Case "exit.htm" '退出登录
        wb.DeleteCookie("username") '清除cookie中原来的用户名和密码
        wb.DeleteCookie("password")
        wb.InsertHTML("<meta http-equiv='Refresh' c>") '那么直接跳转到登录页面
    Case "", "default.htm" '首页
        wb.AddPageTitle("", "pageheader", "售后管理系统", "")
        With wb.AddGrid("", "g1")
            .Add("c1", "售后报修", "./images/button.png", "")
            .Add("c2", "任务派单", "./images/cell.png", "")
            .Add("c3", "维修任务", "./images/toast.png", "list.htm")
            .Add("c3", "维修工单", "./images/toast.png", "")
            .Add("c3", "人员查询", "./images/toast.png", "")
            .Add("c12", "退出", "./images/exit.png", "exit.htm") '退出登录
        End With   
    Case "list.htm"'维修任务清单
        Functions.Execute("List", e) '分页显示
    Case "edit.htm"'维修工单明细
        If e.PostValues.Count > 0 Then
            Functions.Execute("Save", e) '保存表单数据
        End If
        Functions.Execute("Edit", e) '生成订单编辑页面
    Case "getSelect1" 
        Dim filter As String = "" 
        If e.PostValues.ContainsKey("项目地址_query") Then 
            filter = "项目地址 like '%" & e.PostValues("项目地址_query") & "%'" 
        End If 
        e.WriteString(DataTables("项目明细表").GetComboListString("项目地址", filter)) 
    Case "getSelect2" 
        Dim filter As String = "" 
        If e.PostValues.ContainsKey("售后管家_query") Then 
            filter = "Config like '%" & e.PostValues("售后管家_query") & "%'" 
        End If 
        e.WriteString(DataTables("Users").GetComboListString("Name", filter)) 
    Case "wefox"
        MessageBox.Show("OK")
        If e.Request.HttpMethod = "GET" Then
            Dim token = "foxtable" '必须和设置的Token相同
            Dim signature As String = e.GetValues("signature")
            Dim timestamp As String = e.GetValues("timestamp") 
            Dim nonce As String = e.GetValues("nonce") 
            Dim echostr As String = e.GetValues("echostr")
            Dim aryTmp() As String = {token, timestamp, nonce}
            Array.Sort(aryTmp)
            Dim strTmp As String = String.Join("", aryTmp)
            strTmp = Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strTmp, "SHA1")
            If signature = strTmp.ToLower() Then
                e.WriteString(echostr)
            End If
        End If
        
End Select

 回到顶部
帅哥,在线噢!
qinqinwo1114
  3楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:117 积分:1207 威望:0 精华:0 注册:2013/2/21 21:43:00
  发帖心情 Post By:2024/11/8 13:26:00 [显示全部帖子]

调试了,没有任何反应,也没有弹窗

 回到顶部
帅哥,在线噢!
qinqinwo1114
  4楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:117 积分:1207 威望:0 精华:0 注册:2013/2/21 21:43:00
  发帖心情 Post By:2024/11/8 13:49:00 [显示全部帖子]

好奇怪,放到浏览器也不弹窗

 回到顶部
帅哥,在线噢!
qinqinwo1114
  5楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:117 积分:1207 威望:0 精华:0 注册:2013/2/21 21:43:00
  发帖心情 Post By:2024/11/8 14:03:00 [显示全部帖子]

Case "wefox"
        MessageBox.Show(e.Request.HttpMethod)
        MessageBox.Show(e.path)
        If e.Request.HttpMethod = "GET" Then
            Dim token = "foxtable" '必须和设置的Token相同
            Dim signature As String = e.GetValues("signature")
            MessageBox.Show("signature =" & signature)
            Dim timestamp As String = e.GetValues("timestamp") 
            Dim nonce As String = e.GetValues("nonce") 
            Dim echostr As String = e.GetValues("echostr")
            MessageBox.Show("echostr =" & echostr)
            Dim aryTmp() As String = {token, timestamp, nonce}
            Array.Sort(aryTmp)
            Dim strTmp As String = String.Join("", aryTmp)
            strTmp = Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strTmp, "SHA1")
            MessageBox.Show("strTmp =" & strTmp)
            If signature = strTmp.ToLower() Then
                e.WriteString(echostr)
            End If
        End If


还是没反应

 回到顶部
帅哥,在线噢!
qinqinwo1114
  6楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:117 积分:1207 威望:0 精华:0 注册:2013/2/21 21:43:00
  发帖心情 Post By:2024/11/8 14:48:00 [显示全部帖子]

放在第一行弹窗了。弹窗内容:wefox;但是还是配置失败。。。
图片点击可在新窗口打开查看此主题相关图片如下:33.png
图片点击可在新窗口打开查看

 回到顶部
帅哥,在线噢!
qinqinwo1114
  7楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:117 积分:1207 威望:0 精华:0 注册:2013/2/21 21:43:00
  发帖心情 Post By:2024/11/8 14:54:00 [显示全部帖子]

问题是放在第一行弹窗了,但是 case “wefox”后面的代码并没有执行,这是什么鬼。。。

 回到顶部
帅哥,在线噢!
qinqinwo1114
  8楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:幼狐 帖子:117 积分:1207 威望:0 精华:0 注册:2013/2/21 21:43:00
  发帖心情 Post By:2024/11/8 15:19:00 [显示全部帖子]

其他代码全删除就可以了。。。。

 回到顶部