Help Us Spread The Word! Get Em and Stick Em!
- Die cut stickers
- 2.72" x 3"
- Thick, durable vinyl protects your stickers from scratches, water & sunlight
- www.animalpeopleaz.com
Animal People Sticker
SKU: 364215375135191
$3.00Price
Excluding Sales Tax
// backend/getIP.jsw import { fetch } from 'wix-fetch'; export async function getVisitorIP() { try { const response = await fetch("https://api.ipify.org?format=json", { method: "get" }); if (response.ok) { const json = await response.json(); return json.ip; // returns the visitor's IP address } else { return "Error fetching IP"; } } catch (err) { console.error("IP fetch failed", err); return "Unavailable"; } }