All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.cp.api.impl.WxCpAgentServiceImpl Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.cp.api.impl;

import me.chanjar.weixin.common.error.WxErrorException;
import me.chanjar.weixin.cp.api.WxCpAgentService;
import me.chanjar.weixin.cp.api.WxCpService;
import me.chanjar.weixin.cp.bean.WxCpAgent;


/**
 * 
 *  管理企业号应用
 *  Created by huansinho on 2018/4/13.
 * 
* * @author huansinho */ public class WxCpAgentServiceImpl implements WxCpAgentService { private WxCpService mainService; public WxCpAgentServiceImpl(WxCpService mainService) { this.mainService = mainService; } @Override public WxCpAgent get(Integer agentId) throws WxErrorException { String url = "https://qyapi.weixin.qq.com/cgi-bin/agent/get"; if (agentId != null) { url += "?agentid=" + agentId; } else { throw new IllegalArgumentException("缺少agentid参数"); } String responseContent = this.mainService.get(url, null); return WxCpAgent.fromJson(responseContent); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy