Check our Supabase documentation for more information on how to get a Supabase token.
Copy
import { getKobble } from '@kobble/next/server';export default async function handler(req, res) { const kobble = getKobble(); const supabaseToken = await kobble.getSupabaseToken(); // Do something with the token such as calling supabase API}