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

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

tags:

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

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

case "PostSNSNewsTask": {// 发送朋友圈任务
log.debug("websocket:msgtype=PostSNSNewsTask。。。。。");
postSNSNewsTaskWebsocketHandler.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.PostSNSNewsTask.PostSNSNewsTaskMessage;
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 PostSNSNewsTaskWebsocketHandler{
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);
PostSNSNewsTaskMessage.Builder bd = PostSNSNewsTaskMessage.newBuilder();
JsonFormat.parser().merge(contentJsonStr, bd);
PostSNSNewsTaskMessage req = bd.build();
//PostSNSNewsTaskMessage req = vo.getContent().unpack(PostSNSNewsTaskMessage.class);

        ChannelHandlerContext  chx = NettyConnectionUtil.getClientChannelHandlerContextByUserId(req.getWeChatId());
        if(null != chx){
            //转发给手机端
            MessageUtil.sendMsg(chx, EnumMsgType.PostSNSNewsTask, 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使用教程--发送朋友圈任务的主要内容,如果未能解决你的问题,请参考以下文章

微信公众号开发--微信JS-SDK分享到朋友圈和分享给朋友

c#微信开发,使用JS-SDK自定义分享功能,分享朋友圈,分享给朋友等

h5 微信分享朋友和朋友圈

微信公众号开发--微信JS-SDK分享到朋友圈和分享给朋友

微信开发笔记-调用自定义分享接口

微信公众号分享到朋友圈的实现方式