|
@@ -79,8 +79,6 @@ public class MceMbuserServiceImpl extends AbstractCrudService<MceMbuserMapper, M
|
|
|
String infoType = requestVO.getInfoType();
|
|
|
String infoTypeName = requestVO.getInfoTypeName();
|
|
|
String oaType = requestVO.getOaType();
|
|
|
- String instanceId = requestVO.getInstanceId();
|
|
|
-
|
|
|
// access_token时效校验,判断获取access_token获取时间是否超过有效时间,超过就调用更新,保证一直有效
|
|
|
if (!redisHelper.hasKey("access_key")) {
|
|
|
redisHelper.set("access_time", LocalDateTime.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss")));
|
|
@@ -193,10 +191,9 @@ public class MceMbuserServiceImpl extends AbstractCrudService<MceMbuserMapper, M
|
|
|
}
|
|
|
|
|
|
log.info("oaType:{}",oaType);
|
|
|
- log.info("instanceId:{}",instanceId);
|
|
|
// 回调地址
|
|
|
if ("3".equals(requestVO.getInfoType())) {
|
|
|
- tUrl = String.format(constant.WE_CHAT_CUSTOMER_CALL_URL3, infoType, infoTypeName, infoId, oaType, instanceId);
|
|
|
+ tUrl = String.format(constant.WE_CHAT_CUSTOMER_CALL_URL3, infoType, infoTypeName, infoId, oaType);
|
|
|
} else if (Objects.nonNull(infoTypeName)) {
|
|
|
tUrl = String.format(constant.WE_CHAT_CUSTOMER_CALL_URL, infoType, infoTypeName, infoId);
|
|
|
} else {
|