Python: Create an anonymous user
- Returns an anonymous user
- It is recommended to set up captcha for anonymous sign-ins to prevent abuse. You can pass in the captcha token in the
options
param.
Parameters
credentials
(Required)undefined
Examples
Create an anonymous user
response = supabase.auth.sign_in_anonymously(
\{"options": \{"captcha_token": ""\}\}
)
Create an anonymous user with custom user metadata
response = supabase.auth.sign_in_anonymously(
\{"options": \{"data": \{\}\}\}
)