n8n-nodes-ume-v4 4.2.2 → 4.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -133,10 +133,14 @@ class UmeSocialSeeding {
|
|
133
133
|
if (parameter.type === 'string') {
|
134
134
|
const value = this.getNodeParameter(parameter.name, itemIndex, "");
|
135
135
|
if (parameter.name === 'uid') {
|
136
|
-
// Extract
|
137
|
-
const extractedValue =
|
136
|
+
// Extract ID from URL for UID services
|
137
|
+
const extractedValue = (0, UmeSocialSeedingHelpers_1.extractIdFromUrl)(value.trim() || '', serviceName);
|
138
138
|
formBody[parameter.name] = extractedValue;
|
139
139
|
}
|
140
|
+
else if (parameter.name === 'url') {
|
141
|
+
// For URL services, send the URL as-is without extraction
|
142
|
+
formBody[parameter.name] = value.trim();
|
143
|
+
}
|
140
144
|
else if (parameter.name === 'link') {
|
141
145
|
// For Instagram, TikTok, YouTube - send the URL as-is without extraction
|
142
146
|
formBody[parameter.name] = value.trim();
|
@@ -165,6 +169,15 @@ class UmeSocialSeeding {
|
|
165
169
|
formBody[parameter.name] = processedComments;
|
166
170
|
}
|
167
171
|
}
|
172
|
+
else if (parameter.name === 'uid') {
|
173
|
+
// Extract ID from URL for UID services
|
174
|
+
const extractedValue = (0, UmeSocialSeedingHelpers_1.extractIdFromUrl)(value.trim() || '', serviceName);
|
175
|
+
formBody[parameter.name] = extractedValue;
|
176
|
+
}
|
177
|
+
else if (parameter.name === 'url') {
|
178
|
+
// For URL services, send the URL as-is without extraction
|
179
|
+
formBody[parameter.name] = value.trim();
|
180
|
+
}
|
168
181
|
else if (value && value.trim() !== "") {
|
169
182
|
formBody[parameter.name] = value.trim();
|
170
183
|
}
|
@@ -224,7 +224,13 @@ const UID_REQUIRED_SERVICES = [
|
|
224
224
|
'buff_group',
|
225
225
|
'share_group',
|
226
226
|
'review',
|
227
|
-
'view_100k_reel'
|
227
|
+
'view_100k_reel',
|
228
|
+
'like',
|
229
|
+
'share',
|
230
|
+
'favorite',
|
231
|
+
'like_comment',
|
232
|
+
'retweet',
|
233
|
+
'follow'
|
228
234
|
];
|
229
235
|
|
230
236
|
// Extract ID from various platform URLs - ONLY for services that need UID
|
@@ -304,7 +304,7 @@
|
|
304
304
|
"options": [
|
305
305
|
"0",
|
306
306
|
"15",
|
307
|
-
"
|
307
|
+
"50"
|
308
308
|
]
|
309
309
|
},
|
310
310
|
{
|
@@ -363,7 +363,7 @@
|
|
363
363
|
"options": [
|
364
364
|
"0",
|
365
365
|
"15",
|
366
|
-
"
|
366
|
+
"50"
|
367
367
|
]
|
368
368
|
},
|
369
369
|
{
|
@@ -517,7 +517,11 @@
|
|
517
517
|
{
|
518
518
|
"name": "speed",
|
519
519
|
"defaultValue": "0",
|
520
|
-
"options": [
|
520
|
+
"options": [
|
521
|
+
"0",
|
522
|
+
"15",
|
523
|
+
"50"
|
524
|
+
]
|
521
525
|
},
|
522
526
|
{
|
523
527
|
"name": "list_sticker",
|
@@ -776,7 +780,11 @@
|
|
776
780
|
{
|
777
781
|
"name": "speed",
|
778
782
|
"defaultValue": "0",
|
779
|
-
"options": [
|
783
|
+
"options": [
|
784
|
+
"0",
|
785
|
+
"15",
|
786
|
+
"50"
|
787
|
+
]
|
780
788
|
},
|
781
789
|
{
|
782
790
|
"name": "list_sticker",
|
@@ -1110,7 +1118,11 @@
|
|
1110
1118
|
{
|
1111
1119
|
"name": "speed",
|
1112
1120
|
"defaultValue": "0",
|
1113
|
-
"options": [
|
1121
|
+
"options": [
|
1122
|
+
"0",
|
1123
|
+
"15",
|
1124
|
+
"50"
|
1125
|
+
]
|
1114
1126
|
},
|
1115
1127
|
{
|
1116
1128
|
"name": "list_sticker",
|
@@ -1325,7 +1337,11 @@
|
|
1325
1337
|
{
|
1326
1338
|
"name": "speed",
|
1327
1339
|
"defaultValue": "0",
|
1328
|
-
"options": [
|
1340
|
+
"options": [
|
1341
|
+
"0",
|
1342
|
+
"15",
|
1343
|
+
"50"
|
1344
|
+
]
|
1329
1345
|
},
|
1330
1346
|
{
|
1331
1347
|
"name": "list_sticker",
|
@@ -7,11 +7,12 @@
|
|
7
7
|
"parameters": [
|
8
8
|
{
|
9
9
|
"name": "uid",
|
10
|
-
"displayName": "ID
|
10
|
+
"displayName": "ID hoặc URL",
|
11
11
|
"type": "string",
|
12
12
|
"required": false,
|
13
|
-
"default": "
|
14
|
-
"description": "ID hoặc URL gốc
|
13
|
+
"default": "",
|
14
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
15
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
15
16
|
},
|
16
17
|
{
|
17
18
|
"name": "count",
|
@@ -99,18 +100,6 @@
|
|
99
100
|
"editor": "multiLine",
|
100
101
|
"rows": 5
|
101
102
|
}
|
102
|
-
},
|
103
|
-
{
|
104
|
-
"name": "speed",
|
105
|
-
"displayName": "Tốc độ",
|
106
|
-
"type": "number",
|
107
|
-
"required": false,
|
108
|
-
"default": "0",
|
109
|
-
"description": "0 (nhanh), 15 (trung bình), 60 (chậm) - chỉ v5",
|
110
|
-
"typeOptions": {
|
111
|
-
"minValue": 1,
|
112
|
-
"maxValue": 60
|
113
|
-
}
|
114
103
|
}
|
115
104
|
],
|
116
105
|
"warnings": [
|
@@ -197,11 +186,12 @@
|
|
197
186
|
"parameters": [
|
198
187
|
{
|
199
188
|
"name": "uid",
|
200
|
-
"displayName": "ID
|
189
|
+
"displayName": "ID hoặc URL",
|
201
190
|
"type": "string",
|
202
191
|
"required": true,
|
203
|
-
"default": "
|
204
|
-
"description": "ID hoặc URL gốc
|
192
|
+
"default": "",
|
193
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
194
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
205
195
|
},
|
206
196
|
{
|
207
197
|
"name": "count",
|
@@ -323,11 +313,12 @@
|
|
323
313
|
"parameters": [
|
324
314
|
{
|
325
315
|
"name": "uid",
|
326
|
-
"displayName": "ID
|
316
|
+
"displayName": "ID hoặc URL",
|
327
317
|
"type": "string",
|
328
318
|
"required": true,
|
329
|
-
"default": "
|
330
|
-
"description": "ID hoặc URL gốc
|
319
|
+
"default": "",
|
320
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
321
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
331
322
|
},
|
332
323
|
{
|
333
324
|
"name": "count",
|
@@ -612,11 +603,12 @@
|
|
612
603
|
"parameters": [
|
613
604
|
{
|
614
605
|
"name": "uid",
|
615
|
-
"displayName": "ID
|
606
|
+
"displayName": "ID hoặc URL",
|
616
607
|
"type": "string",
|
617
608
|
"required": true,
|
618
|
-
"default": "
|
619
|
-
"description": "ID hoặc URL gốc
|
609
|
+
"default": "",
|
610
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
611
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
620
612
|
},
|
621
613
|
{
|
622
614
|
"name": "count",
|
@@ -745,28 +737,27 @@
|
|
745
737
|
{
|
746
738
|
"name": "speed",
|
747
739
|
"displayName": "Tốc độ",
|
748
|
-
"type": "
|
740
|
+
"type": "options",
|
749
741
|
"required": false,
|
750
742
|
"default": "0",
|
751
|
-
"description": "
|
752
|
-
"
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
}
|
743
|
+
"description": "Chọn tốc độ xử lý đơn hàng",
|
744
|
+
"options": [
|
745
|
+
{
|
746
|
+
"name": "Nhanh",
|
747
|
+
"value": "0",
|
748
|
+
"description": "Xử lý nhanh nhất"
|
749
|
+
},
|
750
|
+
{
|
751
|
+
"name": "Trung bình",
|
752
|
+
"value": "15",
|
753
|
+
"description": "Xử lý ở tốc độ trung bình"
|
754
|
+
},
|
755
|
+
{
|
756
|
+
"name": "Chậm",
|
757
|
+
"value": "50",
|
758
|
+
"description": "Xử lý chậm để tự nhiên hơn"
|
759
|
+
}
|
760
|
+
]
|
770
761
|
},
|
771
762
|
{
|
772
763
|
"name": "note",
|
@@ -897,11 +888,12 @@
|
|
897
888
|
"parameters": [
|
898
889
|
{
|
899
890
|
"name": "uid",
|
900
|
-
"displayName": "ID
|
891
|
+
"displayName": "ID hoặc URL",
|
901
892
|
"type": "string",
|
902
893
|
"required": false,
|
903
894
|
"default": "",
|
904
|
-
"description": "ID hoặc URL gốc
|
895
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
896
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
905
897
|
},
|
906
898
|
{
|
907
899
|
"name": "count",
|
@@ -980,28 +972,27 @@
|
|
980
972
|
{
|
981
973
|
"name": "speed",
|
982
974
|
"displayName": "Tốc độ",
|
983
|
-
"type": "
|
975
|
+
"type": "options",
|
984
976
|
"required": false,
|
985
977
|
"default": "0",
|
986
|
-
"description": "
|
987
|
-
"
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
}
|
978
|
+
"description": "Chọn tốc độ xử lý đơn hàng",
|
979
|
+
"options": [
|
980
|
+
{
|
981
|
+
"name": "Nhanh",
|
982
|
+
"value": "0",
|
983
|
+
"description": "Xử lý nhanh nhất"
|
984
|
+
},
|
985
|
+
{
|
986
|
+
"name": "Trung bình",
|
987
|
+
"value": "15",
|
988
|
+
"description": "Xử lý ở tốc độ trung bình"
|
989
|
+
},
|
990
|
+
{
|
991
|
+
"name": "Chậm",
|
992
|
+
"value": "50",
|
993
|
+
"description": "Xử lý chậm để tự nhiên hơn"
|
994
|
+
}
|
995
|
+
]
|
1005
996
|
},
|
1006
997
|
{
|
1007
998
|
"name": "note",
|
@@ -1048,12 +1039,13 @@
|
|
1048
1039
|
"description": "Dịch vụ Tăng View Story trên facebook\n\n",
|
1049
1040
|
"parameters": [
|
1050
1041
|
{
|
1051
|
-
"name": "
|
1052
|
-
"displayName": "
|
1042
|
+
"name": "url",
|
1043
|
+
"displayName": "URL",
|
1053
1044
|
"type": "string",
|
1054
1045
|
"required": false,
|
1055
1046
|
"default": "",
|
1056
|
-
"description": "
|
1047
|
+
"description": "URL gốc của nội dung cần tăng",
|
1048
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
1057
1049
|
},
|
1058
1050
|
{
|
1059
1051
|
"name": "count",
|
@@ -1131,12 +1123,13 @@
|
|
1131
1123
|
"description": "Dịch vụ Tăng View Video trên facebook\n\n",
|
1132
1124
|
"parameters": [
|
1133
1125
|
{
|
1134
|
-
"name": "
|
1135
|
-
"displayName": "
|
1126
|
+
"name": "url",
|
1127
|
+
"displayName": "URL",
|
1136
1128
|
"type": "string",
|
1137
1129
|
"required": false,
|
1138
1130
|
"default": "",
|
1139
|
-
"description": "
|
1131
|
+
"description": "URL gốc của nội dung cần tăng",
|
1132
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
1140
1133
|
},
|
1141
1134
|
{
|
1142
1135
|
"name": "count",
|
@@ -1203,18 +1196,6 @@
|
|
1203
1196
|
"minValue": 1,
|
1204
1197
|
"maxValue": 10
|
1205
1198
|
}
|
1206
|
-
},
|
1207
|
-
{
|
1208
|
-
"name": "speed",
|
1209
|
-
"displayName": "Tốc độ",
|
1210
|
-
"type": "number",
|
1211
|
-
"required": false,
|
1212
|
-
"default": "0",
|
1213
|
-
"description": "0: Bình thường, 1: Nhanh (Giá x1.5) - Chỉ áp dụng cho v2 + v3",
|
1214
|
-
"typeOptions": {
|
1215
|
-
"minValue": 1,
|
1216
|
-
"maxValue": 60
|
1217
|
-
}
|
1218
1199
|
}
|
1219
1200
|
],
|
1220
1201
|
"warnings": [
|
@@ -1275,11 +1256,12 @@
|
|
1275
1256
|
"parameters": [
|
1276
1257
|
{
|
1277
1258
|
"name": "uid",
|
1278
|
-
"displayName": "ID
|
1259
|
+
"displayName": "ID hoặc URL",
|
1279
1260
|
"type": "string",
|
1280
1261
|
"required": false,
|
1281
1262
|
"default": "",
|
1282
|
-
"description": "ID hoặc URL gốc
|
1263
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
1264
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
1283
1265
|
},
|
1284
1266
|
{
|
1285
1267
|
"name": "count",
|
@@ -1351,14 +1333,27 @@
|
|
1351
1333
|
{
|
1352
1334
|
"name": "speed",
|
1353
1335
|
"displayName": "Tốc độ",
|
1354
|
-
"type": "
|
1336
|
+
"type": "options",
|
1355
1337
|
"required": false,
|
1356
1338
|
"default": "0",
|
1357
|
-
"description": "
|
1358
|
-
"
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1339
|
+
"description": "Chọn tốc độ xử lý đơn hàng",
|
1340
|
+
"options": [
|
1341
|
+
{
|
1342
|
+
"name": "Nhanh",
|
1343
|
+
"value": "0",
|
1344
|
+
"description": "Xử lý nhanh nhất"
|
1345
|
+
},
|
1346
|
+
{
|
1347
|
+
"name": "Trung bình",
|
1348
|
+
"value": "15",
|
1349
|
+
"description": "Xử lý ở tốc độ trung bình"
|
1350
|
+
},
|
1351
|
+
{
|
1352
|
+
"name": "Chậm",
|
1353
|
+
"value": "50",
|
1354
|
+
"description": "Xử lý chậm để tự nhiên hơn"
|
1355
|
+
}
|
1356
|
+
]
|
1362
1357
|
}
|
1363
1358
|
],
|
1364
1359
|
"warnings": [
|
@@ -1410,11 +1405,12 @@
|
|
1410
1405
|
"parameters": [
|
1411
1406
|
{
|
1412
1407
|
"name": "uid",
|
1413
|
-
"displayName": "ID
|
1408
|
+
"displayName": "ID hoặc URL",
|
1414
1409
|
"type": "string",
|
1415
1410
|
"required": false,
|
1416
1411
|
"default": "",
|
1417
|
-
"description": "ID hoặc URL gốc
|
1412
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
1413
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
1418
1414
|
},
|
1419
1415
|
{
|
1420
1416
|
"name": "count",
|
@@ -1556,12 +1552,13 @@
|
|
1556
1552
|
"description": "Dịch vụ View Instagram trên instagram\n\n",
|
1557
1553
|
"parameters": [
|
1558
1554
|
{
|
1559
|
-
"name": "
|
1560
|
-
"displayName": "
|
1555
|
+
"name": "url",
|
1556
|
+
"displayName": "URL",
|
1561
1557
|
"type": "string",
|
1562
1558
|
"required": false,
|
1563
1559
|
"default": "",
|
1564
|
-
"description": "
|
1560
|
+
"description": "URL gốc của nội dung cần tăng",
|
1561
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
1565
1562
|
},
|
1566
1563
|
{
|
1567
1564
|
"name": "count",
|
@@ -1717,11 +1714,12 @@
|
|
1717
1714
|
"parameters": [
|
1718
1715
|
{
|
1719
1716
|
"name": "uid",
|
1720
|
-
"displayName": "ID
|
1717
|
+
"displayName": "ID hoặc URL",
|
1721
1718
|
"type": "string",
|
1722
1719
|
"required": false,
|
1723
1720
|
"default": "",
|
1724
|
-
"description": "ID hoặc URL gốc
|
1721
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
1722
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
1725
1723
|
},
|
1726
1724
|
{
|
1727
1725
|
"name": "count",
|
@@ -1825,11 +1823,12 @@
|
|
1825
1823
|
"parameters": [
|
1826
1824
|
{
|
1827
1825
|
"name": "uid",
|
1828
|
-
"displayName": "ID
|
1826
|
+
"displayName": "ID hoặc URL",
|
1829
1827
|
"type": "string",
|
1830
1828
|
"required": false,
|
1831
1829
|
"default": "",
|
1832
|
-
"description": "ID hoặc URL gốc
|
1830
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
1831
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
1833
1832
|
},
|
1834
1833
|
{
|
1835
1834
|
"name": "count",
|
@@ -1929,11 +1928,12 @@
|
|
1929
1928
|
"parameters": [
|
1930
1929
|
{
|
1931
1930
|
"name": "uid",
|
1932
|
-
"displayName": "ID
|
1931
|
+
"displayName": "ID hoặc URL",
|
1933
1932
|
"type": "string",
|
1934
1933
|
"required": false,
|
1935
1934
|
"default": "",
|
1936
|
-
"description": "ID hoặc URL gốc
|
1935
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
1936
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
1937
1937
|
},
|
1938
1938
|
{
|
1939
1939
|
"name": "count",
|
@@ -2005,14 +2005,27 @@
|
|
2005
2005
|
{
|
2006
2006
|
"name": "speed",
|
2007
2007
|
"displayName": "Tốc độ",
|
2008
|
-
"type": "
|
2008
|
+
"type": "options",
|
2009
2009
|
"required": false,
|
2010
2010
|
"default": "0",
|
2011
|
-
"description": "
|
2012
|
-
"
|
2013
|
-
|
2014
|
-
|
2015
|
-
|
2011
|
+
"description": "Chọn tốc độ xử lý đơn hàng",
|
2012
|
+
"options": [
|
2013
|
+
{
|
2014
|
+
"name": "Nhanh",
|
2015
|
+
"value": "0",
|
2016
|
+
"description": "Xử lý nhanh nhất"
|
2017
|
+
},
|
2018
|
+
{
|
2019
|
+
"name": "Trung bình",
|
2020
|
+
"value": "15",
|
2021
|
+
"description": "Xử lý ở tốc độ trung bình"
|
2022
|
+
},
|
2023
|
+
{
|
2024
|
+
"name": "Chậm",
|
2025
|
+
"value": "50",
|
2026
|
+
"description": "Xử lý chậm để tự nhiên hơn"
|
2027
|
+
}
|
2028
|
+
]
|
2016
2029
|
}
|
2017
2030
|
],
|
2018
2031
|
"warnings": [
|
@@ -2062,11 +2075,12 @@
|
|
2062
2075
|
"parameters": [
|
2063
2076
|
{
|
2064
2077
|
"name": "uid",
|
2065
|
-
"displayName": "ID
|
2078
|
+
"displayName": "ID hoặc URL",
|
2066
2079
|
"type": "string",
|
2067
2080
|
"required": false,
|
2068
2081
|
"default": "",
|
2069
|
-
"description": "ID hoặc URL gốc
|
2082
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
2083
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
2070
2084
|
},
|
2071
2085
|
{
|
2072
2086
|
"name": "count",
|
@@ -2188,11 +2202,12 @@
|
|
2188
2202
|
"parameters": [
|
2189
2203
|
{
|
2190
2204
|
"name": "uid",
|
2191
|
-
"displayName": "ID
|
2205
|
+
"displayName": "ID hoặc URL",
|
2192
2206
|
"type": "string",
|
2193
2207
|
"required": false,
|
2194
2208
|
"default": "",
|
2195
|
-
"description": "ID hoặc URL gốc
|
2209
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
2210
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
2196
2211
|
},
|
2197
2212
|
{
|
2198
2213
|
"name": "count",
|
@@ -2238,18 +2253,6 @@
|
|
2238
2253
|
"default": "like",
|
2239
2254
|
"description": "like, love, care, haha, wow, sad, angry (sv 1 + 3)"
|
2240
2255
|
},
|
2241
|
-
{
|
2242
|
-
"name": "speed",
|
2243
|
-
"displayName": "Tốc độ",
|
2244
|
-
"type": "number",
|
2245
|
-
"required": false,
|
2246
|
-
"default": "0",
|
2247
|
-
"description": "0, 15, 50 tương ứng nhanh, bình thường, chậm (sv 1 + 3)",
|
2248
|
-
"typeOptions": {
|
2249
|
-
"minValue": 1,
|
2250
|
-
"maxValue": 60
|
2251
|
-
}
|
2252
|
-
},
|
2253
2256
|
{
|
2254
2257
|
"name": "note",
|
2255
2258
|
"displayName": "Ghi chú",
|
@@ -2290,11 +2293,12 @@
|
|
2290
2293
|
"parameters": [
|
2291
2294
|
{
|
2292
2295
|
"name": "uid",
|
2293
|
-
"displayName": "ID
|
2296
|
+
"displayName": "ID hoặc URL",
|
2294
2297
|
"type": "string",
|
2295
2298
|
"required": false,
|
2296
2299
|
"default": "",
|
2297
|
-
"description": "ID hoặc URL gốc
|
2300
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
2301
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
2298
2302
|
},
|
2299
2303
|
{
|
2300
2304
|
"name": "count",
|
@@ -2523,11 +2527,12 @@
|
|
2523
2527
|
"parameters": [
|
2524
2528
|
{
|
2525
2529
|
"name": "uid",
|
2526
|
-
"displayName": "ID
|
2530
|
+
"displayName": "ID hoặc URL",
|
2527
2531
|
"type": "string",
|
2528
2532
|
"required": true,
|
2529
|
-
"default": "
|
2530
|
-
"description": "ID hoặc URL gốc
|
2533
|
+
"default": "",
|
2534
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
2535
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
2531
2536
|
},
|
2532
2537
|
{
|
2533
2538
|
"name": "count",
|
@@ -2662,12 +2667,13 @@
|
|
2662
2667
|
"description": "Dịch vụ View TikTok trên tiktok\n\n",
|
2663
2668
|
"parameters": [
|
2664
2669
|
{
|
2665
|
-
"name": "
|
2666
|
-
"displayName": "
|
2670
|
+
"name": "url",
|
2671
|
+
"displayName": "URL",
|
2667
2672
|
"type": "string",
|
2668
2673
|
"required": false,
|
2669
2674
|
"default": "",
|
2670
|
-
"description": "
|
2675
|
+
"description": "URL gốc của nội dung cần tăng",
|
2676
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
2671
2677
|
},
|
2672
2678
|
{
|
2673
2679
|
"name": "count",
|
@@ -2825,11 +2831,12 @@
|
|
2825
2831
|
"parameters": [
|
2826
2832
|
{
|
2827
2833
|
"name": "uid",
|
2828
|
-
"displayName": "ID
|
2834
|
+
"displayName": "ID hoặc URL",
|
2829
2835
|
"type": "string",
|
2830
2836
|
"required": false,
|
2831
2837
|
"default": "",
|
2832
|
-
"description": "ID hoặc URL gốc
|
2838
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
2839
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
2833
2840
|
},
|
2834
2841
|
{
|
2835
2842
|
"name": "count",
|
@@ -2901,14 +2908,27 @@
|
|
2901
2908
|
{
|
2902
2909
|
"name": "speed",
|
2903
2910
|
"displayName": "Tốc độ",
|
2904
|
-
"type": "
|
2911
|
+
"type": "options",
|
2905
2912
|
"required": false,
|
2906
2913
|
"default": "0",
|
2907
|
-
"description": "
|
2908
|
-
"
|
2909
|
-
|
2910
|
-
|
2911
|
-
|
2914
|
+
"description": "Chọn tốc độ xử lý đơn hàng",
|
2915
|
+
"options": [
|
2916
|
+
{
|
2917
|
+
"name": "Nhanh",
|
2918
|
+
"value": "0",
|
2919
|
+
"description": "Xử lý nhanh nhất"
|
2920
|
+
},
|
2921
|
+
{
|
2922
|
+
"name": "Trung bình",
|
2923
|
+
"value": "15",
|
2924
|
+
"description": "Xử lý ở tốc độ trung bình"
|
2925
|
+
},
|
2926
|
+
{
|
2927
|
+
"name": "Chậm",
|
2928
|
+
"value": "50",
|
2929
|
+
"description": "Xử lý chậm để tự nhiên hơn"
|
2930
|
+
}
|
2931
|
+
]
|
2912
2932
|
}
|
2913
2933
|
],
|
2914
2934
|
"warnings": [],
|
@@ -2951,11 +2971,12 @@
|
|
2951
2971
|
"parameters": [
|
2952
2972
|
{
|
2953
2973
|
"name": "uid",
|
2954
|
-
"displayName": "ID
|
2974
|
+
"displayName": "ID hoặc URL",
|
2955
2975
|
"type": "string",
|
2956
2976
|
"required": false,
|
2957
2977
|
"default": "",
|
2958
|
-
"description": "ID hoặc URL gốc
|
2978
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
2979
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
2959
2980
|
},
|
2960
2981
|
{
|
2961
2982
|
"name": "count",
|
@@ -3084,11 +3105,12 @@
|
|
3084
3105
|
"parameters": [
|
3085
3106
|
{
|
3086
3107
|
"name": "uid",
|
3087
|
-
"displayName": "ID
|
3108
|
+
"displayName": "ID hoặc URL",
|
3088
3109
|
"type": "string",
|
3089
3110
|
"required": false,
|
3090
3111
|
"default": "",
|
3091
|
-
"description": "ID hoặc URL gốc
|
3112
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
3113
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
3092
3114
|
},
|
3093
3115
|
{
|
3094
3116
|
"name": "count",
|
@@ -3189,12 +3211,13 @@
|
|
3189
3211
|
"description": "Dịch vụ View Twitter trên twitter\n\n",
|
3190
3212
|
"parameters": [
|
3191
3213
|
{
|
3192
|
-
"name": "
|
3193
|
-
"displayName": "
|
3214
|
+
"name": "url",
|
3215
|
+
"displayName": "URL",
|
3194
3216
|
"type": "string",
|
3195
3217
|
"required": false,
|
3196
3218
|
"default": "",
|
3197
|
-
"description": "
|
3219
|
+
"description": "URL gốc của nội dung cần tăng",
|
3220
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
3198
3221
|
},
|
3199
3222
|
{
|
3200
3223
|
"name": "count",
|
@@ -3280,11 +3303,12 @@
|
|
3280
3303
|
"parameters": [
|
3281
3304
|
{
|
3282
3305
|
"name": "uid",
|
3283
|
-
"displayName": "ID
|
3306
|
+
"displayName": "ID hoặc URL",
|
3284
3307
|
"type": "string",
|
3285
3308
|
"required": false,
|
3286
3309
|
"default": "",
|
3287
|
-
"description": "ID hoặc URL gốc
|
3310
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
3311
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
3288
3312
|
},
|
3289
3313
|
{
|
3290
3314
|
"name": "count",
|
@@ -3396,14 +3420,27 @@
|
|
3396
3420
|
{
|
3397
3421
|
"name": "speed",
|
3398
3422
|
"displayName": "Tốc độ",
|
3399
|
-
"type": "
|
3423
|
+
"type": "options",
|
3400
3424
|
"required": false,
|
3401
3425
|
"default": "0",
|
3402
|
-
"description": "
|
3403
|
-
"
|
3404
|
-
|
3405
|
-
|
3406
|
-
|
3426
|
+
"description": "Chọn tốc độ xử lý đơn hàng",
|
3427
|
+
"options": [
|
3428
|
+
{
|
3429
|
+
"name": "Nhanh",
|
3430
|
+
"value": "0",
|
3431
|
+
"description": "Xử lý nhanh nhất"
|
3432
|
+
},
|
3433
|
+
{
|
3434
|
+
"name": "Trung bình",
|
3435
|
+
"value": "15",
|
3436
|
+
"description": "Xử lý ở tốc độ trung bình"
|
3437
|
+
},
|
3438
|
+
{
|
3439
|
+
"name": "Chậm",
|
3440
|
+
"value": "50",
|
3441
|
+
"description": "Xử lý chậm để tự nhiên hơn"
|
3442
|
+
}
|
3443
|
+
]
|
3407
3444
|
}
|
3408
3445
|
],
|
3409
3446
|
"warnings": [
|
@@ -3505,12 +3542,13 @@
|
|
3505
3542
|
"description": "Dịch vụ Like Comment Youtube trên youtube\n\n**Tính năng tự động:** Hệ thống sẽ tự động trích xuất ID từ URL Facebook, Instagram, TikTok, YouTube, Twitter, Threads, Telegram, Shopee nếu bạn nhập link.",
|
3506
3543
|
"parameters": [
|
3507
3544
|
{
|
3508
|
-
"name": "
|
3509
|
-
"displayName": "
|
3545
|
+
"name": "url",
|
3546
|
+
"displayName": "URL",
|
3510
3547
|
"type": "string",
|
3511
3548
|
"required": false,
|
3512
3549
|
"default": "",
|
3513
|
-
"description": "
|
3550
|
+
"description": "URL gốc của nội dung cần tăng",
|
3551
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
3514
3552
|
},
|
3515
3553
|
{
|
3516
3554
|
"name": "count",
|
@@ -3566,18 +3604,6 @@
|
|
3566
3604
|
"default": "like",
|
3567
3605
|
"description": "like, love, care, haha, wow, sad, angry (sv 1 + 3)"
|
3568
3606
|
},
|
3569
|
-
{
|
3570
|
-
"name": "speed",
|
3571
|
-
"displayName": "Tốc độ",
|
3572
|
-
"type": "number",
|
3573
|
-
"required": false,
|
3574
|
-
"default": "0",
|
3575
|
-
"description": "0, 15, 50 tương ứng nhanh, bình thường, chậm (sv 1 + 3)",
|
3576
|
-
"typeOptions": {
|
3577
|
-
"minValue": 1,
|
3578
|
-
"maxValue": 60
|
3579
|
-
}
|
3580
|
-
},
|
3581
3607
|
{
|
3582
3608
|
"name": "note",
|
3583
3609
|
"displayName": "Ghi chú",
|
@@ -3634,11 +3660,12 @@
|
|
3634
3660
|
"parameters": [
|
3635
3661
|
{
|
3636
3662
|
"name": "uid",
|
3637
|
-
"displayName": "ID
|
3663
|
+
"displayName": "ID hoặc URL",
|
3638
3664
|
"type": "string",
|
3639
3665
|
"required": false,
|
3640
3666
|
"default": "",
|
3641
|
-
"description": "ID hoặc URL gốc
|
3667
|
+
"description": "ID hoặc URL gốc (hệ thống sẽ tự động trích xuất ID từ URL nếu bạn nhập link)",
|
3668
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
3642
3669
|
},
|
3643
3670
|
{
|
3644
3671
|
"name": "count",
|
@@ -3766,12 +3793,13 @@
|
|
3766
3793
|
"description": "Dịch vụ View Youtube trên youtube\n\n",
|
3767
3794
|
"parameters": [
|
3768
3795
|
{
|
3769
|
-
"name": "
|
3770
|
-
"displayName": "
|
3796
|
+
"name": "url",
|
3797
|
+
"displayName": "URL",
|
3771
3798
|
"type": "string",
|
3772
3799
|
"required": false,
|
3773
3800
|
"default": "",
|
3774
|
-
"description": "
|
3801
|
+
"description": "URL gốc của nội dung cần tăng",
|
3802
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
3775
3803
|
},
|
3776
3804
|
{
|
3777
3805
|
"name": "count",
|