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() {
50
50
dataKey = CommonUtils .adaptShortPaths (SHARE_URL_PREFIX , key );
51
51
}
52
52
53
- String shareId = String .valueOf (AESUtils .idEncrypt (dataKey ));
53
+ // 240530 此处shareId又改为了原始的shareId, nm玩呢?
54
+ String shareId = dataKey ; // String.valueOf(AESUtils.idEncrypt(dataKey));
54
55
long nowTs = System .currentTimeMillis ();
55
56
String tsEncode = AESUtils .encrypt2Hex (Long .toString (nowTs ));
56
57
String uuid = UUIDUtil .fjUuid (); // 也可以使用 UUID.randomUUID().toString()
@@ -61,7 +62,7 @@ public Future<String> parse() {
61
62
.setTemplateParam ("ts" , tsEncode )
62
63
.send ().onSuccess (r0 -> { // 忽略res
63
64
64
- long nowTs0 = System .currentTimeMillis ();
65
+ // long nowTs0 = System.currentTimeMillis();
65
66
String tsEncode0 = AESUtils .encrypt2Hex (Long .toString (nowTs ));
66
67
// 第一次请求 获取文件信息
67
68
// 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