测试wss是否连接企业微信成功
Posted ZGJ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了测试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>
企业微信考勤机无法连接服务器,可以尝试用上面代码保存为html测试一下网络。
测试连接微信wss://openhw.work.weixin.qq.com:443
以上是关于测试wss是否连接企业微信成功的主要内容,如果未能解决你的问题,请参考以下文章