mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-24 16:18:51 +08:00
修复两个客服接口地址问题(怀疑是微信官方偷偷改了的??!!!)
This commit is contained in:
parent
26af3c52cf
commit
ec2e599aee
@ -1,13 +1,6 @@
|
|||||||
package me.chanjar.weixin.mp.api.impl;
|
package me.chanjar.weixin.mp.api.impl;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.util.Date;
|
|
||||||
|
|
||||||
import org.slf4j.Logger;
|
|
||||||
import org.slf4j.LoggerFactory;
|
|
||||||
|
|
||||||
import com.google.gson.JsonObject;
|
import com.google.gson.JsonObject;
|
||||||
|
|
||||||
import me.chanjar.weixin.common.bean.result.WxError;
|
import me.chanjar.weixin.common.bean.result.WxError;
|
||||||
import me.chanjar.weixin.common.bean.result.WxMediaUploadResult;
|
import me.chanjar.weixin.common.bean.result.WxMediaUploadResult;
|
||||||
import me.chanjar.weixin.common.exception.WxErrorException;
|
import me.chanjar.weixin.common.exception.WxErrorException;
|
||||||
@ -17,15 +10,15 @@ import me.chanjar.weixin.mp.api.WxMpService;
|
|||||||
import me.chanjar.weixin.mp.bean.WxMpCustomMessage;
|
import me.chanjar.weixin.mp.bean.WxMpCustomMessage;
|
||||||
import me.chanjar.weixin.mp.bean.kefu.request.WxMpKfAccountRequest;
|
import me.chanjar.weixin.mp.bean.kefu.request.WxMpKfAccountRequest;
|
||||||
import me.chanjar.weixin.mp.bean.kefu.request.WxMpKfSessionRequest;
|
import me.chanjar.weixin.mp.bean.kefu.request.WxMpKfSessionRequest;
|
||||||
import me.chanjar.weixin.mp.bean.kefu.result.WxMpKfList;
|
import me.chanjar.weixin.mp.bean.kefu.result.*;
|
||||||
import me.chanjar.weixin.mp.bean.kefu.result.WxMpKfMsgList;
|
import org.slf4j.Logger;
|
||||||
import me.chanjar.weixin.mp.bean.kefu.result.WxMpKfOnlineList;
|
import org.slf4j.LoggerFactory;
|
||||||
import me.chanjar.weixin.mp.bean.kefu.result.WxMpKfSessionGetResult;
|
|
||||||
import me.chanjar.weixin.mp.bean.kefu.result.WxMpKfSessionList;
|
import java.io.File;
|
||||||
import me.chanjar.weixin.mp.bean.kefu.result.WxMpKfSessionWaitCaseList;
|
import java.util.Date;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @author Binary Wang
|
* @author Binary Wang
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@ -33,6 +26,7 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
protected final Logger log = LoggerFactory
|
protected final Logger log = LoggerFactory
|
||||||
.getLogger(WxMpKefuServiceImpl.class);
|
.getLogger(WxMpKefuServiceImpl.class);
|
||||||
private static final String API_URL_PREFIX = "https://api.weixin.qq.com/customservice";
|
private static final String API_URL_PREFIX = "https://api.weixin.qq.com/customservice";
|
||||||
|
private static final String API_URL_PREFIX_WITH_CGI_BIN = "https://api.weixin.qq.com/cgi-bin/customservice";
|
||||||
private WxMpService wxMpService;
|
private WxMpService wxMpService;
|
||||||
|
|
||||||
public WxMpKefuServiceImpl(WxMpService wxMpService) {
|
public WxMpKefuServiceImpl(WxMpService wxMpService) {
|
||||||
@ -44,26 +38,20 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
throws WxErrorException {
|
throws WxErrorException {
|
||||||
String url = "https://api.weixin.qq.com/cgi-bin/message/custom/send";
|
String url = "https://api.weixin.qq.com/cgi-bin/message/custom/send";
|
||||||
String responseContent = this.wxMpService.post(url, message.toJson());
|
String responseContent = this.wxMpService.post(url, message.toJson());
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, message.toJson(),
|
|
||||||
responseContent);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public WxMpKfList kfList() throws WxErrorException {
|
public WxMpKfList kfList() throws WxErrorException {
|
||||||
String url = API_URL_PREFIX + "/getkflist";
|
String url = API_URL_PREFIX_WITH_CGI_BIN + "/getkflist";
|
||||||
String responseContent = this.wxMpService.get(url, null);
|
String responseContent = this.wxMpService.get(url, null);
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, null,
|
|
||||||
responseContent);
|
|
||||||
return WxMpKfList.fromJson(responseContent);
|
return WxMpKfList.fromJson(responseContent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public WxMpKfOnlineList kfOnlineList() throws WxErrorException {
|
public WxMpKfOnlineList kfOnlineList() throws WxErrorException {
|
||||||
String url = API_URL_PREFIX + "/getonlinekflist";
|
String url = API_URL_PREFIX_WITH_CGI_BIN + "/getonlinekflist";
|
||||||
String responseContent = this.wxMpService.get(url, null);
|
String responseContent = this.wxMpService.get(url, null);
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, null,
|
|
||||||
responseContent);
|
|
||||||
return WxMpKfOnlineList.fromJson(responseContent);
|
return WxMpKfOnlineList.fromJson(responseContent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -72,8 +60,6 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
throws WxErrorException {
|
throws WxErrorException {
|
||||||
String url = API_URL_PREFIX + "/kfaccount/add";
|
String url = API_URL_PREFIX + "/kfaccount/add";
|
||||||
String responseContent = this.wxMpService.post(url, request.toJson());
|
String responseContent = this.wxMpService.post(url, request.toJson());
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, request.toJson(),
|
|
||||||
responseContent);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -82,8 +68,6 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
throws WxErrorException {
|
throws WxErrorException {
|
||||||
String url = API_URL_PREFIX + "/kfaccount/update";
|
String url = API_URL_PREFIX + "/kfaccount/update";
|
||||||
String responseContent = this.wxMpService.post(url, request.toJson());
|
String responseContent = this.wxMpService.post(url, request.toJson());
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, request.toJson(),
|
|
||||||
responseContent);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -91,8 +75,6 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
public boolean kfAccountInviteWorker(WxMpKfAccountRequest request) throws WxErrorException {
|
public boolean kfAccountInviteWorker(WxMpKfAccountRequest request) throws WxErrorException {
|
||||||
String url = API_URL_PREFIX + "/kfaccount/inviteworker";
|
String url = API_URL_PREFIX + "/kfaccount/inviteworker";
|
||||||
String responseContent = this.wxMpService.post(url, request.toJson());
|
String responseContent = this.wxMpService.post(url, request.toJson());
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, request.toJson(),
|
|
||||||
responseContent);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -102,9 +84,6 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
String url = API_URL_PREFIX + "/kfaccount/uploadheadimg?kf_account=" + kfAccount;
|
String url = API_URL_PREFIX + "/kfaccount/uploadheadimg?kf_account=" + kfAccount;
|
||||||
WxMediaUploadResult responseContent = this.wxMpService
|
WxMediaUploadResult responseContent = this.wxMpService
|
||||||
.execute(new MediaUploadRequestExecutor(), url, imgFile);
|
.execute(new MediaUploadRequestExecutor(), url, imgFile);
|
||||||
this.log.debug("\nurl:{}\nparams:{}&file:{}\nresponse:{}", url, kfAccount,
|
|
||||||
imgFile.getAbsolutePath(),
|
|
||||||
responseContent);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -112,8 +91,6 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
public boolean kfAccountDel(String kfAccount) throws WxErrorException {
|
public boolean kfAccountDel(String kfAccount) throws WxErrorException {
|
||||||
String url = API_URL_PREFIX + "/kfaccount/del?kf_account=" + kfAccount;
|
String url = API_URL_PREFIX + "/kfaccount/del?kf_account=" + kfAccount;
|
||||||
String responseContent = this.wxMpService.get(url, null);
|
String responseContent = this.wxMpService.get(url, null);
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, null,
|
|
||||||
responseContent);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -123,8 +100,6 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
WxMpKfSessionRequest request = new WxMpKfSessionRequest(kfAccount, openid);
|
WxMpKfSessionRequest request = new WxMpKfSessionRequest(kfAccount, openid);
|
||||||
String url = API_URL_PREFIX + "/kfsession/create";
|
String url = API_URL_PREFIX + "/kfsession/create";
|
||||||
String responseContent = this.wxMpService.post(url, request.toJson());
|
String responseContent = this.wxMpService.post(url, request.toJson());
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, request.toJson(),
|
|
||||||
responseContent);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -134,8 +109,6 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
WxMpKfSessionRequest request = new WxMpKfSessionRequest(kfAccount, openid);
|
WxMpKfSessionRequest request = new WxMpKfSessionRequest(kfAccount, openid);
|
||||||
String url = API_URL_PREFIX + "/kfsession/close";
|
String url = API_URL_PREFIX + "/kfsession/close";
|
||||||
String responseContent = this.wxMpService.post(url, request.toJson());
|
String responseContent = this.wxMpService.post(url, request.toJson());
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, request.toJson(),
|
|
||||||
responseContent);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -144,8 +117,6 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
throws WxErrorException {
|
throws WxErrorException {
|
||||||
String url = API_URL_PREFIX + "/kfsession/getsession?openid=" + openid;
|
String url = API_URL_PREFIX + "/kfsession/getsession?openid=" + openid;
|
||||||
String responseContent = this.wxMpService.get(url, null);
|
String responseContent = this.wxMpService.get(url, null);
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, null,
|
|
||||||
responseContent);
|
|
||||||
return WxMpKfSessionGetResult.fromJson(responseContent);
|
return WxMpKfSessionGetResult.fromJson(responseContent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -154,8 +125,6 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
throws WxErrorException {
|
throws WxErrorException {
|
||||||
String url = API_URL_PREFIX + "/kfsession/getsessionlist?kf_account=" + kfAccount;
|
String url = API_URL_PREFIX + "/kfsession/getsessionlist?kf_account=" + kfAccount;
|
||||||
String responseContent = this.wxMpService.get(url, null);
|
String responseContent = this.wxMpService.get(url, null);
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, null,
|
|
||||||
responseContent);
|
|
||||||
return WxMpKfSessionList.fromJson(responseContent);
|
return WxMpKfSessionList.fromJson(responseContent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -164,8 +133,6 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
throws WxErrorException {
|
throws WxErrorException {
|
||||||
String url = API_URL_PREFIX + "/kfsession/getwaitcase";
|
String url = API_URL_PREFIX + "/kfsession/getwaitcase";
|
||||||
String responseContent = this.wxMpService.get(url, null);
|
String responseContent = this.wxMpService.get(url, null);
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, null,
|
|
||||||
responseContent);
|
|
||||||
return WxMpKfSessionWaitCaseList.fromJson(responseContent);
|
return WxMpKfSessionWaitCaseList.fromJson(responseContent);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -188,8 +155,7 @@ public class WxMpKefuServiceImpl implements WxMpKefuService {
|
|||||||
param.addProperty("number", number); //number 每次获取条数,最多10000条
|
param.addProperty("number", number); //number 每次获取条数,最多10000条
|
||||||
|
|
||||||
String responseContent = this.wxMpService.post(url, param.toString());
|
String responseContent = this.wxMpService.post(url, param.toString());
|
||||||
this.log.debug("\nurl:{}\nparams:{}\nresponse:{}", url, param.toString(),
|
|
||||||
responseContent);
|
|
||||||
return WxMpKfMsgList.fromJson(responseContent);
|
return WxMpKfMsgList.fromJson(responseContent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user