|
(async () => {
|
|
const req = await fetch("https://uwuzu.net/api/me", {
|
|
method: "POST",
|
|
cache: "no-store",
|
|
body: JSON.stringify({
|
|
token: "RpC9X0BuNUsaOxLkw3Pf5YGMIEHVtgldDnrbWKzhFvjT7eZ4qJ6m81Si2oQcAy",
|
|
}),
|
|
});
|
|
const res = await req.json();
|
|
|
|
console.log(res);
|
|
})();
|