微信机器人开发SDK使用教程--主动添加好友任务

Posted 微信客服scrm系统研究中心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信机器人开发SDK使用教程--主动添加好友任务相关的知识,希望对你有一定的参考价值。

微信机器人开发SDK使用教程--主动添加好友任务

case "AddFriendsTask": {// 主动添加好友任务
log.debug("websocket:msgtype=AddFriendsTask。。。。。");
addFriendsTaskWebsocketHandler.handleMsg(ctx, vo,contentJsonStr);
break;
}

package com.jubotech.framework.netty.handler.websocket;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;

import com.google.protobuf.util.JsonFormat;
import com.jubotech.framework.netty.common.Constant;
import com.jubotech.framework.netty.utils.MessageUtil;
import com.jubotech.framework.netty.utils.NettyConnectionUtil;

import Jubo.JuLiao.IM.Wx.Proto.AddFriendsTask.AddFriendsTaskMessage;
import Jubo.JuLiao.IM.Wx.Proto.TransportMessageOuterClass.EnumErrorCode;
import Jubo.JuLiao.IM.Wx.Proto.TransportMessageOuterClass.EnumMsgType;
import Jubo.JuLiao.IM.Wx.Proto.TransportMessageOuterClass.TransportMessage;
import io.netty.channel.ChannelHandlerContext;

@Service
public class AddFriendsTaskWebsocketHandler{
private final Logger log = LoggerFactory.getLogger(getClass());
/**
* 主动添加好友任务
* @author wechatno:tangjinjinwx
* @param ctx
* @param vo
*/
public void handleMsg(ChannelHandlerContext ctx,TransportMessage vo, String contentJsonStr) {
try {
log.info(contentJsonStr);
AddFriendsTaskMessage.Builder bd = AddFriendsTaskMessage.newBuilder();
JsonFormat.parser().merge(contentJsonStr, bd);
AddFriendsTaskMessage req = bd.build();
//AddFriendsTaskMessage req = vo.getContent().unpack(AddFriendsTaskMessage.class);
ChannelHandlerContext chx = NettyConnectionUtil.getClientChannelHandlerContextByUserId(req.getWeChatId());
if(null != chx){
//转发给手机端
MessageUtil.sendMsg(chx, EnumMsgType.AddFriendsTask, vo.getAccessToken(), null, req);
//告诉发送方 消息已经收到
MessageUtil.sendJsonMsg(ctx, EnumMsgType.MsgReceivedAck, vo.getAccessToken(), vo.getId(), null);
}else{
//对方不在线
MessageUtil.sendJsonErrMsg(ctx, EnumErrorCode.TargetNotOnline, Constant.ERROR_MSG_NOTONLINE);
}
} catch (Exception e) {
e.printStackTrace();
MessageUtil.sendJsonErrMsg(ctx, EnumErrorCode.InvalidParam, Constant.ERROR_MSG_DECODFAIL);
}
}
}

项目地址:https://github.com/wechatbot/wechat.robot.sdk
接口参考:http://www.yunlauncher.com/Blog/articles/119.html

以上是关于微信机器人开发SDK使用教程--主动添加好友任务的主要内容,如果未能解决你的问题,请参考以下文章

微信开发SDK使用教程--手机微信好友发来聊天消息通知服务端

微信开发SDK使用教程--手机微信个人号新增好友通知服务端

微信开发SDK使用教程--手机微信个人号移除好友通知服务端

微信二次开发sdk使用教程--手机微信上回复好友的聊天消息通知服务端

微信机器人开发SDK使用教程--发送朋友圈任务

个人微信Hook-开发SDK-C#Demo