FAQ
How do I perform database operations with authenticated users on Supabase?
1. How do I perform database operations with authenticated users on Supabase?
- Solution: Ensure your database permissions are set up for authenticated users by running the following SQL queries:
GRANT USAGE ON SCHEMA "public" TO authenticated; GRANT SELECT, INSERT, UPDATE ON ALL TABLES IN SCHEMA "public" TO authenticated;
2. Why do I get this error when logging in with Google on Supabase?
[AuthApiError: Passed nonce and nonce in id_token should either both exist or not.]
- Solution: In the Supabase console, navigate to the Authentication settings and enable the
Skip nonce checksoption.
Why do I get this error when logging in with Google on Supabase?
[AuthApiError: Passed nonce and nonce in id_token should either both exist or not.]
- Solution: In the Supabase console, navigate to the Authentication settings and enable the
Skip nonce checksoption.