企业微信考勤机有时候无法连接,可以使用下面代码来测试下网络情况
<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>