fix: deeplfree api

This commit is contained in:
Gabe
2025-10-01 23:22:14 +08:00
parent d18b31692b
commit 039566ded5
3 changed files with 37 additions and 40 deletions

View File

@@ -7,7 +7,9 @@ export const genDeeplFree = ({ texts, from, to }) => {
timestamp = timestamp + (iCount - (timestamp % iCount));
id++;
let body = JSON.stringify({
const url = "https://www2.deepl.com/jsonrpc";
const data = {
jsonrpc: "2.0",
method: "LMT_handle_texts",
params: {
@@ -29,30 +31,20 @@ export const genDeeplFree = ({ texts, from, to }) => {
},
],
},
});
body = body.replace(
'method":"',
(id + 3) % 13 === 0 || (id + 5) % 29 === 0 ? 'method" : "' : 'method": "'
);
const input = "https://www2.deepl.com/jsonrpc";
const init = {
headers: {
"Content-Type": "application/json",
Accept: "*/*",
"x-app-os-name": "iOS",
"x-app-os-version": "16.3.0",
"Accept-Language": "en-US,en;q=0.9",
"Accept-Encoding": "gzip, deflate, br",
"x-app-device": "iPhone13,2",
"User-Agent": "DeepL-iOS/2.9.1 iOS 16.3.0 (iPhone13,2)",
"x-app-build": "510265",
"x-app-version": "2.9.1",
},
method: "POST",
body,
};
return [input, init];
const headers = {
"Content-Type": "application/json",
Accept: "*/*",
"x-app-os-name": "iOS",
"x-app-os-version": "16.3.0",
"Accept-Language": "en-US,en;q=0.9",
"Accept-Encoding": "gzip, deflate, br",
"x-app-device": "iPhone13,2",
"User-Agent": "DeepL-iOS/2.9.1 iOS 16.3.0 (iPhone13,2)",
"x-app-build": "510265",
"x-app-version": "2.9.1",
};
return { url, data, headers };
};