测试wss是否连接企业微信成功

企业微信考勤机有时候无法连接,可以使用下面代码来测试下网络情况 
<html>
<head>
<title>测试wss</title>
</head>
<body>
<div>测试连接微信wss://openhw.work.weixin.qq.com:443</div>
<button onclick="test()">连接</button>
<script>
function test()
{
var ws=new WebSocket("wss://openhw.work.weixin.qq.com:443/");
ws.onopen = function(e) {
    alert('连接成功');
};
ws.onerror = function(e) {
    alert('连接失败');
};
}
</script>
</body>
</html>
posted @ 2019-10-30 10:19  zhaogaojian  阅读(1285)  评论(1编辑  收藏  举报