This file contains 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
# script to check for available gametime slots in playo app | |
import requests | |
import json | |
from datetime import datetime, timedelta | |
url = "https://api.playo.io/activity/playogames/list" | |
days_from_today = 0 |
This file contains 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
// This script returns the bonus points one is supposed to get for vouchers bought from Axis Gyftr | |
// Run this script from console after logging in to https://www.gyftr.com/edgerewards | |
async function postData(url = '', data = {}) { | |
const response = await fetch("https://api.gyftr.com/axis-bank/api/order/getAllOrders/", { | |
"headers": { | |
"accept": "*/*", | |
"accept-language": "en-US,en;q=0.9,ml;q=0.8", | |
"content-type": "application/json", | |
"sec-ch-ua": "\"Not?A_Brand\";v=\"8\", \"Chromium\";v=\"108\", \"Google Chrome\";v=\"108\"", | |
"sec-ch-ua-mobile": "?0", |