소스 검색

fix System.currentTimeMillis()

xiewj 1 개월 전
부모
커밋
91993b072c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/fdkankan/site/httpClient/interceptor/SignInterceptor.java

+ 1 - 1
src/main/java/com/fdkankan/site/httpClient/interceptor/SignInterceptor.java

@@ -33,7 +33,7 @@ public class SignInterceptor implements Interceptor<JSONObject> {
         log.info("on invoke method sign");
         JSONObject playload = new JSONObject();
         Instant now = Instant.now();
-        long epochSecond = now.getEpochSecond();
+        long epochSecond =System.currentTimeMillis();
         playload.put("appId", appid);
         playload.put("timestamp", epochSecond);
         request.addHeader("sign", RsaUtils.encipher(playload.toJSONString(), publicKey));  // 添加Header