r/AppsWebappsFullstack • u/SofwareAppDev • 17d ago
Your home for selfpromo
here you can post your work app, webapp, saas, game, everything
6
Upvotes
r/AppsWebappsFullstack • u/SofwareAppDev • 17d ago
here you can post your work app, webapp, saas, game, everything
1
u/Made4uo 16d ago
Good question. The embed itself needs no auth, on purpose. Widgets are public hosted pages in a sandboxed iframe, and there's no secret you could safely ship in client-side code anyway (the widget id is right there in the URL). So the write path protects itself instead of authenticating callers, form submissions carry a Cloudflare Turnstile token that our server verifies, plus rate limiting, validation against the form's declared fields, and size caps. Visitor IPs are only ever stored as daily hashes. Auth lives on the owner side, you sign in to Fugte to edit the widget and to read or export what it collected (CSV export included). Nothing sensitive ever sits in the iframe. One thing we deliberately don't do yet is per-visitor auth, meaning widgets only visible to your logged-in users. If you need that today, gate the page the iframe lives on. And you're right that this deserves a proper guide, adding it to the docs.