TravafaSTORE
Dev Token Login
Get your token from Firebase console or your app's auth flow.
How to get a token
Firebase console: Authentication → Users → copy UID, then use Admin SDK to generate token
JS snippet:
import { getAuth } from "firebase/auth";
const token = await getAuth().currentUser.getIdToken();
console.log(token);This page is for development only. Production will use proper Firebase auth flow.