调用微信公众号API接口可以实现。
用小懒人定时精灵,第三方平台,可以试用7天
谢谢,用了下,确实挺好用的
模拟登录微信公众平台,进行群发的js
var friendList = jQuery.parseJSON(jQuery('#json-friendList').html()) || []; var friend=[]; for(var i in friendList){ friend.push(friendList[i].fakeId); } //<input type="checkbox" value="566102295" class="chooseFriend"> var msg_id=10000094; token="1019658510"; function send(){ if(friend.length==0){ console.log('All user had send!'); return false; //setTimeout(reset_send,500); } var fake_id=friend.shift(); jQuery("html,body").animate({scrollTop:jQuery("input[type=checkbox][value="+fake_id+"]").offset().top-100},1000); var post_data={}; post_data.ajax="1"; post_data.appmsgid=msg_id; post_data.error="false"; post_data.fid=msg_id; post_data.imgcode=""; post_data.tofakeid=fake_id; post_data.token=token; post_data.type=10; var return_data={}; jQuery.post("/cgi-bin/singlesend?t=ajax-response&lang=zh_CN",post_data,function(data){ data.ret=data.ret*1; if(data.msg=="ok"){ console.log(fake_id+": 成功发布,开始下一条"); setTimeout(function(){ send(); },1000); }else if(data.msg=="need verify code"){ console.log("手动发布,添加验证码"); }else if(data.msg=="touser not accept msg from bizuser"){ console.log(fake_id+": 用户设置不接收信息"); setTimeout(function(){ send(); },1000); } },"json"); } function reset_send(){ friendList = jQuery.parseJSON(jQuery('#json-friendList').html()) || []; friend=[]; for(var i in friendList){ friend.push(friendList[i].fakeId); } console.log("已清空"); send(); }
小懒人定时精灵http://www.mptool.cn