Last active
December 3, 2023 22:43
-
-
Save zisra/c191058270e2831d5bf6feeac5873337 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// claim_daily_login | |
const res = await fetch("https://gateway.venge.io/?request=request_ads_coin", { | |
"headers": { | |
"accept": "*/*", | |
"accept-language": "en-US,en;q=0.9", | |
"content-type": "application/x-www-form-urlencoded", | |
"sec-fetch-mode": "cors", | |
"sec-fetch-site": "same-site" | |
}, | |
"referrer": "https://venge.io/", | |
"referrerPolicy": "strict-origin-when-cross-origin", | |
"body": `session={encodeURIComponent(localStorage.getItem("Session"))}`, | |
"method": "POST", | |
"mode": "cors", | |
"credentials": "include" | |
}); | |
const data = await res.json(); | |
console.log(data.message) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment