chenjiahe
2021-11-03 ce7f46e5fa41c7de708243603ede8adb3dc71983
优化token有效时间
1个文件已修改
4 ■■■■ 已修改文件
src/main/java/com/platform/verification/VerificationTool.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/platform/verification/VerificationTool.java
@@ -68,8 +68,8 @@
            return PlatformResult.failure(PlatformCode.ERROR_SIGN, "签名错误05");
        }
        //接口有效2秒钟
        if(System.currentTimeMillis()-date.getTime() > 10000){
        //接口有效5秒钟
        if(System.currentTimeMillis()-date.getTime() > 5000){
            return PlatformResult.failure(PlatformCode.ERRO_VISIT_OVERTIMR, "访问超时");
        }