Update lib/scrapper.js
Browse files- lib/scrapper.js +3 -2
lib/scrapper.js
CHANGED
@@ -22,10 +22,11 @@ async function PinterestDL(search) {
|
|
22 |
}
|
23 |
}
|
24 |
|
25 |
-
async function IzreCustom(endpoint, params
|
26 |
try {
|
27 |
const urls = ParametersUrl(endpoint);
|
28 |
-
const
|
|
|
29 |
const response = await axios.get(url);
|
30 |
return AuthorOriginal(response);
|
31 |
} catch (error) {
|
|
|
22 |
}
|
23 |
}
|
24 |
|
25 |
+
async function IzreCustom(endpoint, params) {
|
26 |
try {
|
27 |
const urls = ParametersUrl(endpoint);
|
28 |
+
const queryString = new URLSearchParams(params).toString();
|
29 |
+
const url = `${urls}?${queryString}`;
|
30 |
const response = await axios.get(url);
|
31 |
return AuthorOriginal(response);
|
32 |
} catch (error) {
|