1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 微信api接口调用-触发推送微信好友列表

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

时间:2024-05-25 02:09:05

相关推荐

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

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

/*** 触发推送微信好友列表任务* @author wechatno:tangjinjinwx* @blog */@Asyncpublic void handleMsg(ChannelHandlerContext ctx,TransportMessage vo, String contentJsonStr) {try {log.debug(contentJsonStr);TriggerFriendPushTaskMessage.Builder bd = TriggerFriendPushTaskMessage.newBuilder();JsonFormat.parser().merge(contentJsonStr, bd);TriggerFriendPushTaskMessage req = bd.build();//TriggerFriendPushTaskMessage req = vo.getContent().unpack(TriggerFriendPushTaskMessage.class);//将消息转发送给手机客户端asyncTaskService.msgSend2Phone(ctx, req.getWeChatId(), EnumMsgType.TriggerFriendPushTask, vo, req);} catch (Exception e) {e.printStackTrace();MessageUtil.sendJsonErrMsg(ctx, EnumErrorCode.InvalidParam, Constant.ERROR_MSG_DECODFAIL);}}/*** 推送微信联系人信息* @author wechatno:tangjinjinwx* @blog */@Asyncpublic void handleMsg(ChannelHandlerContext ctx, TransportMessage vo) {try {ContactsInfoNoticeMessage req = vo.getContent().unpack(ContactsInfoNoticeMessage.class);log.debug(JsonFormat.printer().print(req));asyncTaskService.msgSend2pc(req.getWeChatId(), EnumMsgType.ContactsInfoNotice, req);// 告诉客户端消息已收到MessageUtil.sendMsg(ctx, EnumMsgType.MsgReceivedAck, vo.getAccessToken(), vo.getId(), null);} catch (Exception e) {e.printStackTrace();MessageUtil.sendErrMsg(ctx, EnumErrorCode.InvalidParam,vo.getId(), Constant.ERROR_MSG_DECODFAIL);}}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。