n8n-nodes-ume-v4 4.2.1 → 4.3.0
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
|
@@ -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",
|
@@ -90,11 +91,15 @@
|
|
90
91
|
{
|
91
92
|
"name": "list_comment",
|
92
93
|
"displayName": "Danh sách bình luận",
|
93
|
-
"type": "
|
94
|
+
"type": "string",
|
94
95
|
"required": true,
|
95
96
|
"default": "",
|
96
97
|
"description": "Mỗi bình luận trên một dòng. Hệ thống sẽ tự động xử lý trước khi gửi đi.",
|
97
|
-
"placeholder": "Nội dung bình luận 1\nNội dung bình luận 2\nNội dung bình luận 3"
|
98
|
+
"placeholder": "Nội dung bình luận 1\nNội dung bình luận 2\nNội dung bình luận 3",
|
99
|
+
"typeOptions": {
|
100
|
+
"editor": "multiLine",
|
101
|
+
"rows": 5
|
102
|
+
}
|
98
103
|
},
|
99
104
|
{
|
100
105
|
"name": "speed",
|
@@ -193,11 +198,12 @@
|
|
193
198
|
"parameters": [
|
194
199
|
{
|
195
200
|
"name": "uid",
|
196
|
-
"displayName": "ID
|
201
|
+
"displayName": "ID hoặc URL",
|
197
202
|
"type": "string",
|
198
203
|
"required": true,
|
199
|
-
"default": "
|
200
|
-
"description": "ID hoặc URL gốc
|
204
|
+
"default": "",
|
205
|
+
"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)",
|
206
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
201
207
|
},
|
202
208
|
{
|
203
209
|
"name": "count",
|
@@ -319,11 +325,12 @@
|
|
319
325
|
"parameters": [
|
320
326
|
{
|
321
327
|
"name": "uid",
|
322
|
-
"displayName": "ID
|
328
|
+
"displayName": "ID hoặc URL",
|
323
329
|
"type": "string",
|
324
330
|
"required": true,
|
325
|
-
"default": "
|
326
|
-
"description": "ID hoặc URL gốc
|
331
|
+
"default": "",
|
332
|
+
"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)",
|
333
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
327
334
|
},
|
328
335
|
{
|
329
336
|
"name": "count",
|
@@ -608,11 +615,12 @@
|
|
608
615
|
"parameters": [
|
609
616
|
{
|
610
617
|
"name": "uid",
|
611
|
-
"displayName": "ID
|
618
|
+
"displayName": "ID hoặc URL",
|
612
619
|
"type": "string",
|
613
620
|
"required": true,
|
614
|
-
"default": "
|
615
|
-
"description": "ID hoặc URL gốc
|
621
|
+
"default": "",
|
622
|
+
"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)",
|
623
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
616
624
|
},
|
617
625
|
{
|
618
626
|
"name": "count",
|
@@ -893,11 +901,12 @@
|
|
893
901
|
"parameters": [
|
894
902
|
{
|
895
903
|
"name": "uid",
|
896
|
-
"displayName": "ID
|
904
|
+
"displayName": "ID hoặc URL",
|
897
905
|
"type": "string",
|
898
906
|
"required": false,
|
899
907
|
"default": "",
|
900
|
-
"description": "ID hoặc URL gốc
|
908
|
+
"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)",
|
909
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
901
910
|
},
|
902
911
|
{
|
903
912
|
"name": "count",
|
@@ -1044,12 +1053,13 @@
|
|
1044
1053
|
"description": "Dịch vụ Tăng View Story trên facebook\n\n",
|
1045
1054
|
"parameters": [
|
1046
1055
|
{
|
1047
|
-
"name": "
|
1048
|
-
"displayName": "
|
1056
|
+
"name": "url",
|
1057
|
+
"displayName": "URL",
|
1049
1058
|
"type": "string",
|
1050
1059
|
"required": false,
|
1051
1060
|
"default": "",
|
1052
|
-
"description": "
|
1061
|
+
"description": "URL gốc của nội dung cần tăng",
|
1062
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
1053
1063
|
},
|
1054
1064
|
{
|
1055
1065
|
"name": "count",
|
@@ -1127,12 +1137,13 @@
|
|
1127
1137
|
"description": "Dịch vụ Tăng View Video trên facebook\n\n",
|
1128
1138
|
"parameters": [
|
1129
1139
|
{
|
1130
|
-
"name": "
|
1131
|
-
"displayName": "
|
1140
|
+
"name": "url",
|
1141
|
+
"displayName": "URL",
|
1132
1142
|
"type": "string",
|
1133
1143
|
"required": false,
|
1134
1144
|
"default": "",
|
1135
|
-
"description": "
|
1145
|
+
"description": "URL gốc của nội dung cần tăng",
|
1146
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
1136
1147
|
},
|
1137
1148
|
{
|
1138
1149
|
"name": "count",
|
@@ -1271,11 +1282,12 @@
|
|
1271
1282
|
"parameters": [
|
1272
1283
|
{
|
1273
1284
|
"name": "uid",
|
1274
|
-
"displayName": "ID
|
1285
|
+
"displayName": "ID hoặc URL",
|
1275
1286
|
"type": "string",
|
1276
1287
|
"required": false,
|
1277
1288
|
"default": "",
|
1278
|
-
"description": "ID hoặc URL gốc
|
1289
|
+
"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)",
|
1290
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
1279
1291
|
},
|
1280
1292
|
{
|
1281
1293
|
"name": "count",
|
@@ -1334,11 +1346,15 @@
|
|
1334
1346
|
{
|
1335
1347
|
"name": "list_comment",
|
1336
1348
|
"displayName": "Danh sách bình luận",
|
1337
|
-
"type": "
|
1349
|
+
"type": "string",
|
1338
1350
|
"required": true,
|
1339
1351
|
"default": "",
|
1340
1352
|
"description": "Mỗi bình luận trên một dòng. Hệ thống sẽ tự động xử lý trước khi gửi đi.",
|
1341
|
-
"placeholder": "Nội dung bình luận 1\nNội dung bình luận 2\nNội dung bình luận 3"
|
1353
|
+
"placeholder": "Nội dung bình luận 1\nNội dung bình luận 2\nNội dung bình luận 3",
|
1354
|
+
"typeOptions": {
|
1355
|
+
"editor": "multiLine",
|
1356
|
+
"rows": 5
|
1357
|
+
}
|
1342
1358
|
},
|
1343
1359
|
{
|
1344
1360
|
"name": "speed",
|
@@ -1402,11 +1418,12 @@
|
|
1402
1418
|
"parameters": [
|
1403
1419
|
{
|
1404
1420
|
"name": "uid",
|
1405
|
-
"displayName": "ID
|
1421
|
+
"displayName": "ID hoặc URL",
|
1406
1422
|
"type": "string",
|
1407
1423
|
"required": false,
|
1408
1424
|
"default": "",
|
1409
|
-
"description": "ID hoặc URL gốc
|
1425
|
+
"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)",
|
1426
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
1410
1427
|
},
|
1411
1428
|
{
|
1412
1429
|
"name": "count",
|
@@ -1548,12 +1565,13 @@
|
|
1548
1565
|
"description": "Dịch vụ View Instagram trên instagram\n\n",
|
1549
1566
|
"parameters": [
|
1550
1567
|
{
|
1551
|
-
"name": "
|
1552
|
-
"displayName": "
|
1568
|
+
"name": "url",
|
1569
|
+
"displayName": "URL",
|
1553
1570
|
"type": "string",
|
1554
1571
|
"required": false,
|
1555
1572
|
"default": "",
|
1556
|
-
"description": "
|
1573
|
+
"description": "URL gốc của nội dung cần tăng",
|
1574
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
1557
1575
|
},
|
1558
1576
|
{
|
1559
1577
|
"name": "count",
|
@@ -1709,11 +1727,12 @@
|
|
1709
1727
|
"parameters": [
|
1710
1728
|
{
|
1711
1729
|
"name": "uid",
|
1712
|
-
"displayName": "ID
|
1730
|
+
"displayName": "ID hoặc URL",
|
1713
1731
|
"type": "string",
|
1714
1732
|
"required": false,
|
1715
1733
|
"default": "",
|
1716
|
-
"description": "ID hoặc URL gốc
|
1734
|
+
"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)",
|
1735
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
1717
1736
|
},
|
1718
1737
|
{
|
1719
1738
|
"name": "count",
|
@@ -1817,11 +1836,12 @@
|
|
1817
1836
|
"parameters": [
|
1818
1837
|
{
|
1819
1838
|
"name": "uid",
|
1820
|
-
"displayName": "ID
|
1839
|
+
"displayName": "ID hoặc URL",
|
1821
1840
|
"type": "string",
|
1822
1841
|
"required": false,
|
1823
1842
|
"default": "",
|
1824
|
-
"description": "ID hoặc URL gốc
|
1843
|
+
"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)",
|
1844
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
1825
1845
|
},
|
1826
1846
|
{
|
1827
1847
|
"name": "count",
|
@@ -1921,11 +1941,12 @@
|
|
1921
1941
|
"parameters": [
|
1922
1942
|
{
|
1923
1943
|
"name": "uid",
|
1924
|
-
"displayName": "ID
|
1944
|
+
"displayName": "ID hoặc URL",
|
1925
1945
|
"type": "string",
|
1926
1946
|
"required": false,
|
1927
1947
|
"default": "",
|
1928
|
-
"description": "ID hoặc URL gốc
|
1948
|
+
"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)",
|
1949
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
1929
1950
|
},
|
1930
1951
|
{
|
1931
1952
|
"name": "count",
|
@@ -1984,11 +2005,15 @@
|
|
1984
2005
|
{
|
1985
2006
|
"name": "list_comment",
|
1986
2007
|
"displayName": "Danh sách bình luận",
|
1987
|
-
"type": "
|
2008
|
+
"type": "string",
|
1988
2009
|
"required": true,
|
1989
2010
|
"default": "",
|
1990
2011
|
"description": "Mỗi bình luận trên một dòng. Hệ thống sẽ tự động xử lý trước khi gửi đi.",
|
1991
|
-
"placeholder": "Nội dung bình luận 1\nNội dung bình luận 2\nNội dung bình luận 3"
|
2012
|
+
"placeholder": "Nội dung bình luận 1\nNội dung bình luận 2\nNội dung bình luận 3",
|
2013
|
+
"typeOptions": {
|
2014
|
+
"editor": "multiLine",
|
2015
|
+
"rows": 5
|
2016
|
+
}
|
1992
2017
|
},
|
1993
2018
|
{
|
1994
2019
|
"name": "speed",
|
@@ -2050,11 +2075,12 @@
|
|
2050
2075
|
"parameters": [
|
2051
2076
|
{
|
2052
2077
|
"name": "uid",
|
2053
|
-
"displayName": "ID
|
2078
|
+
"displayName": "ID hoặc URL",
|
2054
2079
|
"type": "string",
|
2055
2080
|
"required": false,
|
2056
2081
|
"default": "",
|
2057
|
-
"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"
|
2058
2084
|
},
|
2059
2085
|
{
|
2060
2086
|
"name": "count",
|
@@ -2176,11 +2202,12 @@
|
|
2176
2202
|
"parameters": [
|
2177
2203
|
{
|
2178
2204
|
"name": "uid",
|
2179
|
-
"displayName": "ID
|
2205
|
+
"displayName": "ID hoặc URL",
|
2180
2206
|
"type": "string",
|
2181
2207
|
"required": false,
|
2182
2208
|
"default": "",
|
2183
|
-
"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"
|
2184
2211
|
},
|
2185
2212
|
{
|
2186
2213
|
"name": "count",
|
@@ -2278,11 +2305,12 @@
|
|
2278
2305
|
"parameters": [
|
2279
2306
|
{
|
2280
2307
|
"name": "uid",
|
2281
|
-
"displayName": "ID
|
2308
|
+
"displayName": "ID hoặc URL",
|
2282
2309
|
"type": "string",
|
2283
2310
|
"required": false,
|
2284
2311
|
"default": "",
|
2285
|
-
"description": "ID hoặc URL gốc
|
2312
|
+
"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)",
|
2313
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
2286
2314
|
},
|
2287
2315
|
{
|
2288
2316
|
"name": "count",
|
@@ -2511,11 +2539,12 @@
|
|
2511
2539
|
"parameters": [
|
2512
2540
|
{
|
2513
2541
|
"name": "uid",
|
2514
|
-
"displayName": "ID
|
2542
|
+
"displayName": "ID hoặc URL",
|
2515
2543
|
"type": "string",
|
2516
2544
|
"required": true,
|
2517
|
-
"default": "
|
2518
|
-
"description": "ID hoặc URL gốc
|
2545
|
+
"default": "",
|
2546
|
+
"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)",
|
2547
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
2519
2548
|
},
|
2520
2549
|
{
|
2521
2550
|
"name": "count",
|
@@ -2650,12 +2679,13 @@
|
|
2650
2679
|
"description": "Dịch vụ View TikTok trên tiktok\n\n",
|
2651
2680
|
"parameters": [
|
2652
2681
|
{
|
2653
|
-
"name": "
|
2654
|
-
"displayName": "
|
2682
|
+
"name": "url",
|
2683
|
+
"displayName": "URL",
|
2655
2684
|
"type": "string",
|
2656
2685
|
"required": false,
|
2657
2686
|
"default": "",
|
2658
|
-
"description": "
|
2687
|
+
"description": "URL gốc của nội dung cần tăng",
|
2688
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
2659
2689
|
},
|
2660
2690
|
{
|
2661
2691
|
"name": "count",
|
@@ -2813,11 +2843,12 @@
|
|
2813
2843
|
"parameters": [
|
2814
2844
|
{
|
2815
2845
|
"name": "uid",
|
2816
|
-
"displayName": "ID
|
2846
|
+
"displayName": "ID hoặc URL",
|
2817
2847
|
"type": "string",
|
2818
2848
|
"required": false,
|
2819
2849
|
"default": "",
|
2820
|
-
"description": "ID hoặc URL gốc
|
2850
|
+
"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)",
|
2851
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
2821
2852
|
},
|
2822
2853
|
{
|
2823
2854
|
"name": "count",
|
@@ -2876,11 +2907,15 @@
|
|
2876
2907
|
{
|
2877
2908
|
"name": "list_comment",
|
2878
2909
|
"displayName": "Danh sách bình luận",
|
2879
|
-
"type": "
|
2910
|
+
"type": "string",
|
2880
2911
|
"required": true,
|
2881
2912
|
"default": "",
|
2882
2913
|
"description": "Mỗi bình luận trên một dòng. Hệ thống sẽ tự động xử lý trước khi gửi đi.",
|
2883
|
-
"placeholder": "Nội dung bình luận 1\nNội dung bình luận 2\nNội dung bình luận 3"
|
2914
|
+
"placeholder": "Nội dung bình luận 1\nNội dung bình luận 2\nNội dung bình luận 3",
|
2915
|
+
"typeOptions": {
|
2916
|
+
"editor": "multiLine",
|
2917
|
+
"rows": 5
|
2918
|
+
}
|
2884
2919
|
},
|
2885
2920
|
{
|
2886
2921
|
"name": "speed",
|
@@ -2935,11 +2970,12 @@
|
|
2935
2970
|
"parameters": [
|
2936
2971
|
{
|
2937
2972
|
"name": "uid",
|
2938
|
-
"displayName": "ID
|
2973
|
+
"displayName": "ID hoặc URL",
|
2939
2974
|
"type": "string",
|
2940
2975
|
"required": false,
|
2941
2976
|
"default": "",
|
2942
|
-
"description": "ID hoặc URL gốc
|
2977
|
+
"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)",
|
2978
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
2943
2979
|
},
|
2944
2980
|
{
|
2945
2981
|
"name": "count",
|
@@ -3068,11 +3104,12 @@
|
|
3068
3104
|
"parameters": [
|
3069
3105
|
{
|
3070
3106
|
"name": "uid",
|
3071
|
-
"displayName": "ID
|
3107
|
+
"displayName": "ID hoặc URL",
|
3072
3108
|
"type": "string",
|
3073
3109
|
"required": false,
|
3074
3110
|
"default": "",
|
3075
|
-
"description": "ID hoặc URL gốc
|
3111
|
+
"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)",
|
3112
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
3076
3113
|
},
|
3077
3114
|
{
|
3078
3115
|
"name": "count",
|
@@ -3173,12 +3210,13 @@
|
|
3173
3210
|
"description": "Dịch vụ View Twitter trên twitter\n\n",
|
3174
3211
|
"parameters": [
|
3175
3212
|
{
|
3176
|
-
"name": "
|
3177
|
-
"displayName": "
|
3213
|
+
"name": "url",
|
3214
|
+
"displayName": "URL",
|
3178
3215
|
"type": "string",
|
3179
3216
|
"required": false,
|
3180
3217
|
"default": "",
|
3181
|
-
"description": "
|
3218
|
+
"description": "URL gốc của nội dung cần tăng",
|
3219
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
3182
3220
|
},
|
3183
3221
|
{
|
3184
3222
|
"name": "count",
|
@@ -3264,11 +3302,12 @@
|
|
3264
3302
|
"parameters": [
|
3265
3303
|
{
|
3266
3304
|
"name": "uid",
|
3267
|
-
"displayName": "ID
|
3305
|
+
"displayName": "ID hoặc URL",
|
3268
3306
|
"type": "string",
|
3269
3307
|
"required": false,
|
3270
3308
|
"default": "",
|
3271
|
-
"description": "ID hoặc URL gốc
|
3309
|
+
"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)",
|
3310
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
3272
3311
|
},
|
3273
3312
|
{
|
3274
3313
|
"name": "count",
|
@@ -3367,11 +3406,15 @@
|
|
3367
3406
|
{
|
3368
3407
|
"name": "list_comment",
|
3369
3408
|
"displayName": "Danh sách bình luận",
|
3370
|
-
"type": "
|
3409
|
+
"type": "string",
|
3371
3410
|
"required": true,
|
3372
3411
|
"default": "",
|
3373
3412
|
"description": "Mỗi bình luận trên một dòng. Hệ thống sẽ tự động xử lý trước khi gửi đi.",
|
3374
|
-
"placeholder": "Nội dung bình luận 1\nNội dung bình luận 2\nNội dung bình luận 3"
|
3413
|
+
"placeholder": "Nội dung bình luận 1\nNội dung bình luận 2\nNội dung bình luận 3",
|
3414
|
+
"typeOptions": {
|
3415
|
+
"editor": "multiLine",
|
3416
|
+
"rows": 5
|
3417
|
+
}
|
3375
3418
|
},
|
3376
3419
|
{
|
3377
3420
|
"name": "speed",
|
@@ -3485,12 +3528,13 @@
|
|
3485
3528
|
"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.",
|
3486
3529
|
"parameters": [
|
3487
3530
|
{
|
3488
|
-
"name": "
|
3489
|
-
"displayName": "
|
3531
|
+
"name": "url",
|
3532
|
+
"displayName": "URL",
|
3490
3533
|
"type": "string",
|
3491
3534
|
"required": false,
|
3492
3535
|
"default": "",
|
3493
|
-
"description": "
|
3536
|
+
"description": "URL gốc của nội dung cần tăng",
|
3537
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
3494
3538
|
},
|
3495
3539
|
{
|
3496
3540
|
"name": "count",
|
@@ -3614,11 +3658,12 @@
|
|
3614
3658
|
"parameters": [
|
3615
3659
|
{
|
3616
3660
|
"name": "uid",
|
3617
|
-
"displayName": "ID
|
3661
|
+
"displayName": "ID hoặc URL",
|
3618
3662
|
"type": "string",
|
3619
3663
|
"required": false,
|
3620
3664
|
"default": "",
|
3621
|
-
"description": "ID hoặc URL gốc
|
3665
|
+
"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)",
|
3666
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789 hoặc 123456789"
|
3622
3667
|
},
|
3623
3668
|
{
|
3624
3669
|
"name": "count",
|
@@ -3746,12 +3791,13 @@
|
|
3746
3791
|
"description": "Dịch vụ View Youtube trên youtube\n\n",
|
3747
3792
|
"parameters": [
|
3748
3793
|
{
|
3749
|
-
"name": "
|
3750
|
-
"displayName": "
|
3794
|
+
"name": "url",
|
3795
|
+
"displayName": "URL",
|
3751
3796
|
"type": "string",
|
3752
3797
|
"required": false,
|
3753
3798
|
"default": "",
|
3754
|
-
"description": "
|
3799
|
+
"description": "URL gốc của nội dung cần tăng",
|
3800
|
+
"placeholder": "https://www.facebook.com/username/posts/123456789"
|
3755
3801
|
},
|
3756
3802
|
{
|
3757
3803
|
"name": "count",
|