jiangping
2024-07-26 5a1cc511d0a16970d5d56fad3cfeaab8f0d903d2
server/web/src/main/java/com/doumee/api/web/CustomerManageApi.java
@@ -115,8 +115,6 @@
        return ApiResponse.success(newsService.findPage(pageWrap));
    }
    @UserLoginRequired
    @ApiOperation(value = "获取客户管理授权-列表跳转地址", notes = "获取客户管理授权跳转地址")
    @GetMapping("/getCrmAuthUrl")
@@ -149,6 +147,7 @@
        String token = DigestUtils.md5Hex(timestamp+interfaceKey);
        if(!token.equals(sign)){
            throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"token已失效!");
        }
        try{
            response.setHeader("Cache-Control", "no-store, no-cache");
@@ -159,5 +158,4 @@
            e.printStackTrace();
        }
    }
}