Learn how Supabase Authentication works and secure your application
Supabase Authentication provides a complete user management system that handles authentication, authorization, and user data. Built on top of PostgreSQL Row Level Security (RLS), it gives you fine-grained control over data access.
import 'package:supabase_flutter/supabase_flutter.dart';// Initialize Supabaseawait Supabase.initialize( url: 'YOUR_SUPABASE_URL', anonKey: 'YOUR_ANON_KEY',);final supabase = Supabase.instance.client;// Get current sessionfinal session = supabase.auth.currentSession;
from supabase import create_client, Clientsupabase: Client = create_client( supabase_url, supabase_key)# Get current useruser = supabase.auth.get_user()
import { createServerClient } from '@supabase/ssr'import { cookies } from 'next/headers'export async function createClient() { const cookieStore = await cookies() return createServerClient( process.env.NEXT_PUBLIC_SUPABASE_URL!, process.env.NEXT_PUBLIC_SUPABASE_PUBLISHABLE_KEY!, { cookies: { getAll() { return cookieStore.getAll() }, setAll(cookiesToSet) { try { cookiesToSet.forEach(({ name, value, options }) => cookieStore.set(name, value, options) ) } catch { // The `setAll` method was called from a Server Component. // This can be ignored if you have proxy refreshing user sessions. } }, }, } )}