fix headers
Browse files- plugins/alldownloader.js +24 -2
plugins/alldownloader.js
CHANGED
@@ -66,6 +66,7 @@ async function downloadMedia(media) {
|
|
66 |
AllDlRoutes.post("/api/v1/dl/savefrom-convert", async (req, res) => {
|
67 |
try {
|
68 |
const url = "https://api.savefrom.app/api/convert";
|
|
|
69 |
const payload = {
|
70 |
url: req.body.url || "https://youtu.be/HLawSES6NFo?si=mKcd9mRSl0XsSQyf",
|
71 |
ts: generateRandomTimestamp(),
|
@@ -74,8 +75,31 @@ AllDlRoutes.post("/api/v1/dl/savefrom-convert", async (req, res) => {
|
|
74 |
_s: "01294d25173ed7832afaa74997b4c52579ac7fb4a4f98c7a115f44336a084c10"
|
75 |
};
|
76 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
const response = await got.post(url, {
|
78 |
json: payload,
|
|
|
79 |
responseType: "json"
|
80 |
});
|
81 |
|
@@ -85,8 +109,6 @@ AllDlRoutes.post("/api/v1/dl/savefrom-convert", async (req, res) => {
|
|
85 |
}
|
86 |
});
|
87 |
|
88 |
-
|
89 |
-
|
90 |
/**
|
91 |
* @swagger
|
92 |
* /api/v1/dl/xnxx-info-v2:
|
|
|
66 |
AllDlRoutes.post("/api/v1/dl/savefrom-convert", async (req, res) => {
|
67 |
try {
|
68 |
const url = "https://api.savefrom.app/api/convert";
|
69 |
+
|
70 |
const payload = {
|
71 |
url: req.body.url || "https://youtu.be/HLawSES6NFo?si=mKcd9mRSl0XsSQyf",
|
72 |
ts: generateRandomTimestamp(),
|
|
|
75 |
_s: "01294d25173ed7832afaa74997b4c52579ac7fb4a4f98c7a115f44336a084c10"
|
76 |
};
|
77 |
|
78 |
+
const headers = {
|
79 |
+
":authority": "api.savefrom.app",
|
80 |
+
":method": "POST",
|
81 |
+
":path": "/api/convert",
|
82 |
+
":scheme": "https",
|
83 |
+
"accept": "application/json, text/plain, */*",
|
84 |
+
"accept-encoding": "gzip, deflate, br, zstd",
|
85 |
+
"accept-language": "id-ID,id;q=0.9,en-US;q=0.8,en;q=0.7",
|
86 |
+
"content-type": "application/json",
|
87 |
+
"dnt": "1",
|
88 |
+
"origin": "https://savefrom.app",
|
89 |
+
"priority": "u=1, i",
|
90 |
+
"referer": "https://savefrom.app/",
|
91 |
+
"sec-ch-ua": `"Not(A:Brand";v="99", "Google Chrome";v="133", "Chromium";v="133"`,
|
92 |
+
"sec-ch-ua-mobile": "?0",
|
93 |
+
"sec-ch-ua-platform": `"Windows"`,
|
94 |
+
"sec-fetch-dest": "empty",
|
95 |
+
"sec-fetch-mode": "cors",
|
96 |
+
"sec-fetch-site": "same-site",
|
97 |
+
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36"
|
98 |
+
};
|
99 |
+
|
100 |
const response = await got.post(url, {
|
101 |
json: payload,
|
102 |
+
headers: headers,
|
103 |
responseType: "json"
|
104 |
});
|
105 |
|
|
|
109 |
}
|
110 |
});
|
111 |
|
|
|
|
|
112 |
/**
|
113 |
* @swagger
|
114 |
* /api/v1/dl/xnxx-info-v2:
|