豫ICP备2024044691号-1
powered by emlog
微信网页版发送消息
Mins 2018-3-17 22:18 微信开发

登陆微信网页版,F12打开网页调试工具,在控制台可以发送消息,利用这个原理,可以实现一些有趣的功能,例如定时发送消息、循环发送消息等等,代码如下:

const appElement = document.querySelector('[ng-controller=chatSenderController]');
const controller = angular.element(appElement).scope();
controller.editAreaCtn = "这是一条消息~";
controller.sendTextMessage();

温馨提示:发送消息的频率不能太块,否则会被微信服务器拒绝,建议频率间隔 > 100ms

附上微信网页版的登陆地址:https://wx2.qq.com