自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

转载 微信api接口调用-微信群管理

微信api接口调用-微信群管理 /** * 微信群聊管理 * @author wechatno:tangjinjinwx * @blog http://www.wlkankan.cn */ @Async public void handleMsg(ChannelHandlerContext ctx, TransportMessage vo, String contentJsonStr) { try { log.debug(contentJ

2021-05-19 15:17:28 1966

转载 微信api接口调用-发朋友圈

微信api接口调用-发朋友圈 /** * 发微信朋友圈 * @author wechatno:tangjinjinwx * @blog http://www.wlkankan.cn */ @Async public void handleMsg(ChannelHandlerContext ctx,TransportMessage vo, String contentJsonStr) { try { log.debug(contentJs

2021-05-19 15:16:27 1058

转载 微信api接口调用-给微信好友或群聊发消息

微信api接口调用-给微信好友或群聊发消息 /** * 给微信好友发消息 * @author wechatno:tangjinjinwx * @blog http://www.wlkankan.cn */ @Async public void handleMsg(ChannelHandlerContext ctx, TransportMessage vo, String contentJsonStr) { try { log.debug(contentJsonStr);

2021-05-19 15:15:38 4278

转载 微信api接口调用-触发推送微信群聊列表

微信api接口调用-触发推送微信群聊列表 /** * 触发推送微信群聊列表 * @author wechatno:tangjinjinwx * @blog http://www.wlkankan.cn */ @Async public void handleMsg(ChannelHandlerContext ctx, TransportMessage vo, String contentJsonStr) { try { log.debug(contentJsonStr);

2021-05-19 15:14:51 924

转载 微信api接口调用-触发推送微信好友列表

微信api接口调用-触发推送微信好友列表 /** * 触发推送微信好友列表任务 * @author wechatno:tangjinjinwx * @blog http://www.wlkankan.cn */ @Async public void handleMsg(ChannelHandlerContext ctx,TransportMessage vo, String contentJsonStr) { try { log.debug(c

2021-05-19 15:13:57 564 1

转载 微信api接口调用-触发推送微信会话列表

微信api接口调用-触发推送微信会话列表 /** * 触发推送微信会话列表 * @author wechatno:tangjinjinwx * @blog http://www.wlkankan.cn */ @Async public void handleMsg(ChannelHandlerContext ctx,TransportMessage vo, String contentJsonStr) { try { log.debug(con

2021-05-19 15:11:18 203

原创 微信自动发消息机器人实现方法

微信自动发消息机器人实现方法1.打开 浏览器;2.访问微信网页版,并扫描登录;3.在左侧找到该联系人,选中后对话,右侧会显示进入聊天窗口;4.把你要发的内容写在输入框内,恩,不要点「发送(Send)」;5.打开调试台(F12)6.在控制台下输入如下代码后回车:循环发送(每隔3秒发送一次):setInterval(function(){$('.edit_area').html('需要发送的文字');$(".edit_area").trigger($.Event("keydown", {

2021-02-07 16:02:30 16431

原创 淘宝自动查券找券返利微信机器人实现方法分享

淘宝自动查券找券返利微信机器人实现方法分享一、登陆淘宝联盟手机淘宝扫码授权登陆淘宝联盟地址:https://www.alimama.com二、配置推广位,获取PID(推荐使用会员PID)会员推广位PID新增教程主要目的就是为了获取PID,PID后面有用到三、注册微信公众号地址:https://mp.weixin.qq.com/cgi-bin/registermidpage?action=index&lang=zh_CN&token=个人请选择订阅号(免费),然后

2021-02-07 14:26:58 621

原创 10条SQL优化技巧

10条SQL优化技巧(1)负向条件查询不能使用索引select * from order where status!=0 and stauts!=1not in/not exists都不是好习惯可以优化为in查询:select * from order where status in(2,3)(2)前导模糊查询不能使用索引select * from order where desc like ‘%XX’而非前导模糊查询则可以:select * from order where desc l

2021-02-07 12:22:46 85 1

原创 netty开发socket服务核心源码

netty开发socket服务核心源码public void nettyMain() { new Thread(new Runnable() { public void run() { // 1 创建线两个程组 // 一个是用于处理服务器端接收客户端连接的 // 一个是进行网络通信的(网络读写的) EventLoopGroup bossG...

2020-10-13 16:37:10 72

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除