Vandals Memes
I make memes...
Merch
-
Slaps - Spade.Ink Collection #1
Regular price From $2.00 USDRegular priceUnit price per -
Slaps - OG VFG Stickers #2
Regular price From $2.00 USDRegular priceUnit price per -
Sold out
Gear - Red glasses
Regular price $10.00 USDRegular priceUnit price perSold out -
Slaps - Ak Meme Stickers
Regular price From $2.00 USDRegular priceUnit price per
// Function to retrieve Instagram feed data
async function getInstagramFeed() {
try {
// Make HTTP request to the Instagram API endpoint
const response = await fetch('API_ENDPOINT');
// Check if the request was successful
if (response.ok) {
const data = await response.json();
return data;
} else {
throw new Error('Failed to retrieve Instagram feed data');
}
} catch (error) {
console.error(error);
}
}
// Call the function to retrieve the Instagram feed data
const instagramFeed = getInstagramFeed();