Update lib/scrapper.js
Browse files- lib/scrapper.js +4 -7
lib/scrapper.js
CHANGED
@@ -22,13 +22,11 @@ async function PinterestDL(search) {
|
|
22 |
}
|
23 |
}
|
24 |
|
25 |
-
async function
|
26 |
try {
|
27 |
-
const urls = ParametersUrl(
|
28 |
-
|
29 |
-
const response = await axios.get(
|
30 |
-
params: params
|
31 |
-
});
|
32 |
return AuthorOriginal(response);
|
33 |
} catch (error) {
|
34 |
console.log(error);
|
@@ -49,5 +47,4 @@ export {
|
|
49 |
XnxxDownloader,
|
50 |
TwitterDownloader,
|
51 |
InstagramDownloader,
|
52 |
-
IzreCustom,
|
53 |
};
|
|
|
22 |
}
|
23 |
}
|
24 |
|
25 |
+
async function SeachTiktok(search) {
|
26 |
try {
|
27 |
+
const urls = ParametersUrl("search/tiktok");
|
28 |
+
const url = urls + `?query=${encodeURIComponent(search)}`;
|
29 |
+
const response = await axios.get(url);
|
|
|
|
|
30 |
return AuthorOriginal(response);
|
31 |
} catch (error) {
|
32 |
console.log(error);
|
|
|
47 |
XnxxDownloader,
|
48 |
TwitterDownloader,
|
49 |
InstagramDownloader,
|
|
|
50 |
};
|