File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
parser/src/main/java/cn/qaiu/parser/impl Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ public Future<String> parse() {
5050 dataKey = CommonUtils .adaptShortPaths (SHARE_URL_PREFIX , key );
5151 }
5252
53- String shareId = String .valueOf (AESUtils .idEncrypt (dataKey ));
53+ // 240530 此处shareId又改为了原始的shareId, nm玩呢?
54+ String shareId = dataKey ; // String.valueOf(AESUtils.idEncrypt(dataKey));
5455 long nowTs = System .currentTimeMillis ();
5556 String tsEncode = AESUtils .encrypt2Hex (Long .toString (nowTs ));
5657 String uuid = UUIDUtil .fjUuid (); // 也可以使用 UUID.randomUUID().toString()
@@ -61,7 +62,7 @@ public Future<String> parse() {
6162 .setTemplateParam ("ts" , tsEncode )
6263 .send ().onSuccess (r0 -> { // 忽略res
6364
64- long nowTs0 = System .currentTimeMillis ();
65+ // long nowTs0 = System.currentTimeMillis();
6566 String tsEncode0 = AESUtils .encrypt2Hex (Long .toString (nowTs ));
6667 // 第一次请求 获取文件信息
6768 // POST https://api.feijipan.com/ws/recommend/list?devType=6&devModel=Chrome&extra=2&shareId=146731&type=0&offset=1&limit=60
You can’t perform that action at this time.
0 commit comments