randydev commited on
Commit
5506d92
·
verified ·
1 Parent(s): 6489242

Update lib/scrapper.js

Browse files
Files changed (1) hide show
  1. lib/scrapper.js +4 -7
lib/scrapper.js CHANGED
@@ -22,13 +22,11 @@ async function PinterestDL(search) {
22
  }
23
  }
24
 
25
- async function IzreCustom(endpoint, params = {}) {
26
  try {
27
- const urls = ParametersUrl(endpoint);
28
- console.log(urls);
29
- const response = await axios.get(urls, {
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
  };