Anonymous Sign-Ins
Create and use anonymous users to authenticate with Supabase
Enable Anonymous Sign-Ins to build apps which provide users an authenticated experience without requiring users to enter an email address, password, use an OAuth provider or provide any other PII (Personally Identifiable Information). Later, when ready, the user can link an authentication method to their account.
Anonymous user vs the anon key
Calling signInAnonymously() creates an anonymous user. It's just like a permanent user, except the user can't access their account if they sign out, clear browsing data, or use another device.
Like permanent users, the authenticated Postgres role will be used when using the Data APIs to access your project. JWTs for these users will have an is_anonymous claim which you can use to distinguish in RLS policies.
This is different from the anon API key which does not create a user and can be used to implement public access to your database as it uses the anonymous Postgres role.
Anonymous sign-ins can be used to build:
- E-commerce applications, such as shopping carts before check-out
- Full-feature demos without collecting personal information
- Temporary or throw-away accounts
Review your existing RLS policies before enabling anonymous sign-ins. Anonymous users use the authenticated role. To distinguish between anonymous users and permanent users, your policies need to check the is_anonymous field of the user's JWT.
See the Access control section for more details.
Use Dynamic Rendering with Next.js
The Supabase team has received reports of user metadata being cached across unique anonymous users as a result of Next.js static page rendering. For the best user experience, utilize dynamic page rendering.
Self hosting and local development
For self-hosting, you can update your project configuration using the files and environment variables provided. See the local development docs for more details.
Sign in anonymously
Call the signInAnonymously() method:
1const { , } = await ..()Convert an anonymous user to a permanent user
Converting an anonymous user to a permanent user requires linking an identity to the user. This requires you to enable manual linking in your Supabase project.
Link an email / phone identity
You can use the updateUser() method to link an email or phone identity to the anonymous user. To add a password for the anonymous user, the user's email or phone number needs to be verified first.
1const { : , : } = await ..({2 : '[email protected]',3})45// verify the user's email by clicking on the email change link6// or entering the 6-digit OTP sent to the email address78// once the user has been verified, update the password9const { : , : } = await ..({10 : 'password',11})Link an OAuth identity
You can use the linkIdentity() method to link an OAuth identity to the anonymous user.
1const { , } = await ..({ : 'google' })Access control
An anonymous user assumes the authenticated role just like a permanent user. You can use row-level security (RLS) policies to differentiate between an anonymous user and a permanent user by checking for the is_anonymous claim in the JWT returned by auth.jwt():
1create policy "Only permanent users can post to the news feed"2on news_feed as restrictive for insert3to authenticated4with check ((select (auth.jwt()->>'is_anonymous')::boolean) is false );56create policy "Anonymous and permanent users can view the news feed"7on news_feed for select8to authenticated9using ( true );Use restrictive policies
RLS policies are permissive by default, which means that they are combined using an "OR" operator when multiple policies are applied. It is important to construct restrictive policies to ensure that the checks for an anonymous user are always enforced when combined with other policies. Be aware that a single 'restrictive' RLS policy alone will fail unless combined with another policy that returns true, ensuring the combined condition is met.
Resolving identity conflicts
Depending on your application requirements, data conflicts can arise when an anonymous user is converted to a permanent user. For example, in the context of an e-commerce application, an anonymous user would be allowed to add items to the shopping cart without signing up / signing in. When they decide to sign-in to an existing account, you will need to decide how you want to resolve data conflicts in the shopping cart:
- Overwrite the items in the cart with those in the existing account
- Overwrite the items in the cart with those from the anonymous user
- Merge the items in the cart together
Linking an anonymous user to an existing account
In some cases, you may need to link an anonymous user to an existing account rather than creating a new permanent account. This process requires manual handling of potential conflicts. Here's a general approach:
1// 1. Sign in anonymously (assuming the user is already signed in anonymously)2const { data: anonData, error: anonError } = await supabase.auth.getSession()34// 2. Attempt to update the user with the existing email5const { data: updateData, error: updateError } = await supabase.auth.updateUser({6 email: '[email protected]',7})89// 3. Handle the error (since the email belongs to an existing user)10if (updateError) {11 console.log('This email belongs to an existing user. Please sign in to that account.')1213 // 4. Sign in to the existing account14 const {15 data: { user: existingUser },16 error: signInError,17 } = await supabase.auth.signInWithPassword({18 email: '[email protected]',19 password: 'user_password',20 })2122 if (existingUser) {23 // 5. Reassign entities tied to the anonymous user24 // This step will vary based on your specific use case and data model25 const { data: reassignData, error: reassignError } = await supabase26 .from('your_table')27 .update({ user_id: existingUser.id })28 .eq('user_id', anonData.session.user.id)2930 // 6. Implement your chosen conflict resolution strategy31 // This could involve merging data, overwriting, or other custom logic32 await resolveDataConflicts(anonData.session.user.id, existingUser.id)33 }34}3536// Helper function to resolve data conflicts (implement based on your strategy)37async function resolveDataConflicts(anonymousUserId, existingUserId) {38 // Implement your conflict resolution logic here39 // This could involve ignoring the anonymous user's metadata, overwriting the existing user's metadata, or merging the data of both the anonymous and existing user.40}Abuse prevention and rate limits
Since anonymous users are stored in your database, bad actors can abuse the endpoint to increase your database size drastically. It is strongly recommended to enable invisible CAPTCHA or Cloudflare Turnstile to prevent abuse for anonymous sign-ins. An IP-based rate limit is enforced at 30 requests per hour which can be modified in your dashboard. You can refer to the full list of rate limits here.
Automatic cleanup
Automatic cleanup of anonymous users is currently not available. Instead, you can delete anonymous users from your project by running the following SQL:
1-- deletes anonymous users created more than 30 days ago2delete from auth.users3where is_anonymous is true and created_at < now() - interval '30 days';