|
|
@ -7,6 +7,7 @@ import cn.hutool.log.Log; |
|
|
|
import cn.hutool.log.LogFactory; |
|
|
|
import cn.hutool.log.LogFactory; |
|
|
|
import com.alibaba.fastjson2.JSON; |
|
|
|
import com.alibaba.fastjson2.JSON; |
|
|
|
import com.alibaba.fastjson2.JSONObject; |
|
|
|
import com.alibaba.fastjson2.JSONObject; |
|
|
|
|
|
|
|
import com.tsl3060.open.extend.core.constant.BuildInfo; |
|
|
|
import com.tsl3060.open.extend.core.exception.ApiException; |
|
|
|
import com.tsl3060.open.extend.core.exception.ApiException; |
|
|
|
import com.tsl3060.open.extend.core.exception.BadResourceException; |
|
|
|
import com.tsl3060.open.extend.core.exception.BadResourceException; |
|
|
|
import com.tsl3060.open.extend.core.notify.IAnswer; |
|
|
|
import com.tsl3060.open.extend.core.notify.IAnswer; |
|
|
@ -24,7 +25,6 @@ import java.util.*; |
|
|
|
import java.util.concurrent.TimeUnit; |
|
|
|
import java.util.concurrent.TimeUnit; |
|
|
|
|
|
|
|
|
|
|
|
public class ApiClient { |
|
|
|
public class ApiClient { |
|
|
|
|
|
|
|
|
|
|
|
private static final int ERROR_OK = 1000; |
|
|
|
private static final int ERROR_OK = 1000; |
|
|
|
|
|
|
|
|
|
|
|
private static final int SUB_OK = 2000; |
|
|
|
private static final int SUB_OK = 2000; |
|
|
@ -47,6 +47,11 @@ public class ApiClient { |
|
|
|
|
|
|
|
|
|
|
|
private final Log log = LogFactory.get(); |
|
|
|
private final Log log = LogFactory.get(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public ApiClient() { |
|
|
|
|
|
|
|
//输出版本
|
|
|
|
|
|
|
|
log.debug("SDK VERSION : {}", BuildInfo.VERSION); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private SecureTool getSecureTool() { |
|
|
|
private SecureTool getSecureTool() { |
|
|
|
if (secureTool == null) { |
|
|
|
if (secureTool == null) { |
|
|
|
secureTool = new SecureTool(getConfig()); |
|
|
|
secureTool = new SecureTool(getConfig()); |
|
|
|