top of page
We are almost there!
Tell me a little about your company
or talk directly through our whatsapp by clicking on the icon  next to.
Melhor dia para reunião:
eu-olhando.png
Preencha suas informações e vamos te ajudar a transformar o seu negócio para o digital.
bottom of page
// backend/instagram.jsw import {fetch} from 'wix-fetch'; const ACCESS_TOKEN = "SEU_ACCESS_TOKEN"; const INSTAGRAM_ID = "SEU_ID_INSTAGRAM_BUSINESS"; export async function getInstagramData() { try { const userURL = `https://graph.facebook.com/v18.0/${INSTAGRAM_ID}?fields=username,followers_count&access_token=${ACCESS_TOKEN}`; const mediaURL = `https://graph.facebook.com/v18.0/${INSTAGRAM_ID}/media?fields=id,caption,media_url,permalink,timestamp&limit=3&access_token=${ACCESS_TOKEN}`; const [userRes, mediaRes] = await Promise.all([ fetch(userURL, { method: 'get' }), fetch(mediaURL, { method: 'get' }) ]); const userData = await userRes.json(); const mediaData = await mediaRes.json(); return { username: userData.username, followers: userData.followers_count, posts: mediaData.data }; } catch (e) { console.error("Erro ao buscar dados do Instagram:", e); return { error: "Erro ao buscar dados" }; } }