Foxtable(狐表)用户栏目专家坐堂 → 网络异常时如何处理报错


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

主题:网络异常时如何处理报错

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


加好友 发短信
等级:超级版主 帖子:110574 积分:562760 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2022/3/23 10:20:00 [显示全部帖子]

……
If tp.TotalSeconds > 3600 Then
    Dim url As String = "https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={0}&corpsecret={1}"
    Dim hc As New HttpClient(CExp(url, CorpID, Secret))
    Dim ret As String = hc.GetData(true)
    If ret = "" orelse not(ret like "{*") Then '
如果失败,再尝试一次
        hc.GetData(true)
    End If
If ret = "" orelse not(ret like "{*") then
msgbox("c错误" & ret)
else
    CreateTime = Date.Now()
    Dim jo As JObject = JObject.Parse(ret)
    If jo("access_token"IsNot Nothing Then
        
AccessTocken = jo("access_token")
    Else
        MessageBox.show("获取access_token失败,原因:" & vbcrlf & jo.ToString)
    End If
endif
End
 If
……

 回到顶部