1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > java 登陆微信获取好友列表_微信api接口 触发推送微信好友列表及返回

java 登陆微信获取好友列表_微信api接口 触发推送微信好友列表及返回

时间:2021-01-12 07:43:47

相关推荐

java 登陆微信获取好友列表_微信api接口 触发推送微信好友列表及返回

微信api接口,触发推送微信好友列表及返回

/**

* 触发手机推送微信好友列表

* @author wechatno:tangjinjinwx

* @blog

*/

@Async

public 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

*/

@Async

public void handleMsg(ChannelHandlerContext ctx, TransportMessage vo) {

try {

FriendPushNoticeMessage req = vo.getContent().unpack(FriendPushNoticeMessage.class);

log.debug(JsonFormat.printer().print(req));

// 把消息转发给pc端

asyncTaskService.msgSend2pc(req.getWeChatId(), EnumMsgType.FriendPushNotice, req);

// 异步保存到数据库

asyncTaskService.friendListSave(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);

}

}

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