抖音粉丝或好友收发消息(抖音第三方sdk抖音api接口开发教程)
/**
* 留言抖音粉丝或朋友
* @作者微信:happybabby110
* @博客
*/
@异步
public void handleMsg(ChannelHandlerContext ctx,TransportMessage vo, String contentJsonStr) {
试试{
log.debug(contentJsonStr);
TalkToFriendTaskMessage.Builder bd = TalkToFriendTaskMessage.newBuilder();
JsonFormat.parser().merge(contentJsonStr, bd);
TalkToFriendTaskMessage req = bd.build();
//将消息转发给移动客户端
asyncTaskService.msgSend2Phone(ctx, req.getImUid(), EnumMsgType.TalkToFriendTask, vo, req);
} 捕捉(异常 e){
e.printStackTrace();
MessageUtil.sendJsonErrMsg(ctx, EnumErrorCode.InvalidParam, Constant.ERROR_MSG_DECODFAIL);
}
}
/**
* 抖音聊天消息实时推送
* @作者微信:happybabby110
* @博客
*/
@异步
public void handleMsg(ChannelHandlerContext ctx, TransportMessage vo) {
试试{
ChatMsgNoticeMessage req = vo.getContent().unpack(ChatMsgNoticeMessage.class);
log.debug(JsonFormat.printer().print(req));
log.debug(LocalDateTime.now()+" ChatMsgNoticeMessage 对应线程名:"+Thread.currentThread().getName());
//消息转发到pc端
asyncTaskService.msgSend2pc(req.getImUid(), EnumMsgType.ChatMsgNotice, req);
// 告诉客户端消息已经收到
MessageUtil.sendMsg(ctx, EnumMsgType.MsgReceivedAck, vo.getAccessToken(), vo.getId(), null);
} 捕捉(异常 e){
e.printStackTrace();
MessageUtil.sendErrMsg(ctx, EnumErrorCode.InvalidParam,vo.getId(), e.getMessage());
}
}