mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-04 23:34:38 +00:00
31 lines
685 B
JavaScript
31 lines
685 B
JavaScript
import { USER_AGENT } from "./config";
|
|
export const HEADERS = {
|
|
"User-Agent": USER_AGENT,
|
|
"Content-Type": "application/json; charset=UTF-8",
|
|
};
|
|
|
|
export const fetchDataViaGet = async (url) => {
|
|
try {
|
|
const response = await fetch(url, {
|
|
headers: HEADERS,
|
|
});
|
|
const data = await response.json();
|
|
return data;
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
};
|
|
|
|
export const fetchDataViaPost = async (url, body) => {
|
|
try {
|
|
const response = await fetch(url, {
|
|
method: "POST",
|
|
headers: HEADERS,
|
|
body: JSON.stringify(body),
|
|
});
|
|
const data = await response.json();
|
|
return data;
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|
|
};
|