Skip to content

Instantly share code, notes, and snippets.

@juanmnl
juanmnl / instagram-follower-following.js
Created January 16, 2023 15:53 — forked from abir-taheer/instagram-follower-following.js
Sign into instagram -> Inspect Element -> Paste code into console tab -> change username variable to your username -> hit enter
const fetchOptions = {
credentials: "include",
headers: {
"X-IG-App-ID": "936619743392459",
},
method: "GET",
};
const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
const random = (min, max) => Math.ceil(Math.random() * (max - min)) + min;