Update lib/scrapper.js
Browse files- lib/scrapper.js +9 -1
lib/scrapper.js
CHANGED
@@ -17,6 +17,13 @@ async function PinterestDL(search) {
|
|
17 |
return AuthorOriginal(response);
|
18 |
}
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
export {
|
21 |
OpenaiRes,
|
22 |
tebakgambar,
|
@@ -29,5 +36,6 @@ export {
|
|
29 |
TiktokDownloader,
|
30 |
XnxxDownloader,
|
31 |
TwitterDownloader,
|
32 |
-
InstagramDownloader
|
|
|
33 |
};
|
|
|
17 |
return AuthorOriginal(response);
|
18 |
}
|
19 |
|
20 |
+
async function IzreCustom(endpoint, params, search) {
|
21 |
+
const urls = ParametersUrl(endpoint);
|
22 |
+
const url = urls + `?${params}=${encodeURIComponent(search)}`
|
23 |
+
const response = await axios.get(url);
|
24 |
+
return AuthorOriginal(response);
|
25 |
+
}
|
26 |
+
|
27 |
export {
|
28 |
OpenaiRes,
|
29 |
tebakgambar,
|
|
|
36 |
TiktokDownloader,
|
37 |
XnxxDownloader,
|
38 |
TwitterDownloader,
|
39 |
+
InstagramDownloader,
|
40 |
+
IzreCustom
|
41 |
};
|