Supabase

S

Supabase

Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.

Join

[CRITICAL BUG] Google OAuth Login Button is Broken on Chrome v141 (Windows/Android)

Hello Supabase Team/Community, I am experiencing a critical issue with Google OAuth login that started after updating to Chrome version 141. It was working fine on Chrome version 140. The NEW Symptom:...

can't create user

When attempting to create a user from the self-hosted Supabase Studio, the error “Failed to create user: API error happened while trying to communicate with the server.” appears. In Kong, the error “POST /api/platform/auth/default/users HTTP/1.1 400” is displayed, and no logs are output in aut kong:2.8.1 gotrue:v2.180.0...

Supabase edge functions and local imports

I'm struggling with figuring out the best way to deploy edge functions which take a dependency on classes or methods defined elsewhere in my repository. I see a lot of posts online around _shared folders, deno.json and import_map. How do I use deno.json for a local import from another place in my repo? Do I need to modify the supabase function deploy <function_name> CLI command in any way? The issue I'm running into now is something like - ...

Best way to connect Supabase and MailerLite

Hi everyone, I’m trying to figure out the best way to connect Supabase to MailerLite. We have an app_users table where users are created and updated. Right now, we’re using a trigger and webhook that sends data to Zapier, but the trigger fires even when no fields change. I only want it to fire on new inserts or when actual data changes, not every update event. What’s the best way to wire Supabase and MailerLite together for this use case? Should I be using Edge Functions, a direct HTTP request, or something else entirely?...

Problem with Supavisor and Prisma

I'm trying to connect to Supavisor with Prisma an I get this error in the console: ✖ Introspecting based on datasource defined in prisma/schema.prisma Error: P1001 Can't reach database server at supabase.justware.it:5432 Please make sure your database server is running at supabase.justware.it:5432....

Cannot create new users — auth.users.id default missing and cannot be altered

Hi everyone — I’m having an issue where new user signups fail with “Database error creating new user.” After checking, I found that auth.users.id has no default value. I tried: ALTER TABLE auth.users ALTER COLUMN id SET DEFAULT gen_random_uuid();...

Internal (?) Auth Migration causes fail at launch (client_secret hash col missing in oauth_clients)

Encountered starting 10/13 Unsure if caused by us or supabase given this is a uni capstone project with inexperienced devs, there's a chance theres something hidden somewhere always but the nature of the error goes against it. Our projects migrations and scan of all local/cloud repositories failed to find the shown migration but 2x related ones were found present in supabase's official Auth repo (1 for adjusting the Auth schema and the other for this failing migration itself) ...
No description

Errors with Dashboard Sign In on Web

Hey folks - when I go to sign into Supabase Dashboard, I click "Sign In With GitHub" and then the API call errors out. I get a "auth.supabase.io took too long to respond" error. I've tried on several browsers at this point....

Sufficient Activity in Project

I'm actively working in my project but I received a message that stated that my project is going to be paused because it does not have sufficient activity. Does anyone know what sufficient activity means? Does it have to be transactional data because that is not what I'm building. Has anyone had any success and not having there database environment paused?

inviteUserByEmail invalidJWTError

In local, getting this error calling inviteUserByEmail via new SB secret key. Error: Failed to invite user: invalid JWT: unable to parse or verify signature, token is malformed: token contains an invalid number of segments...

Realtime not working

I suddenly stopped receiving any update from Realtime. It was working fine until it stopped. Code didn't change. I tested using the Dashboard realtime/inspector and I didn't get any event there too....

Supabase link giving me permission denied

npx supabase link gives me: ```shell Selected project: <project id> WARN: no SMS provider is enabled. Disabling phone login...

Chek if an email is already registered on signup

I want before signin up, to check if an email is already registered. I found this code in stackoverflow ( source ) ``` const [errorMsg, setErrorMsg] = useState<string | null>(null); const [successMsg, setSuccessMsg] = useState<string | null>(null);...

Granting access to pg_stat_statements on a custom role

I'm trying to grant a new role access to query pg_stat_statements using the web console
grant pg_read_all_stats to my_new_user;
grant pg_read_all_stats to my_new_user;
but it fails with...

How to require SSL Cert to connect to DB?

I enabled "Enforce SSL on incoming connections" from the web admin. It seems that I can still connect to the DB without providing an SSL certificate. Is there a way in from the Supabase Server side to "require" a certificate be used?...

Unable to connect to remote

Hello, I'm running into issues connecting to the remote db. ...

Oauth reset password is working

I'm not sure if this is a bug, but when a user creates an account using OAuth and not through email, and then resets their password and tries to sign in with an email, it works. Not sure if this is intended behaviour or not, should I check user identity provider before sending a reset email?

database up & running but Network request failed

hey you all, few days ago, due to inactivity my project was stopped and i restored it, but after that, accessing the database with exact same credentials return Network request failed. in my dashboard, it says PostRest and Postgres as unhealthy but I can do. i did restart the project, fast restart of the database, neither of these helped, still can't access to database with the previous setup in my ios app. i also disabled all RLS nothing helped

Not working: Send Email with correct Custom SMTP settings

Hello, I already provided the correct SMTP values to the Custom SMTP Settings, but sending of email is not working. Even when just clicking the AUTH>ADD USER button (send user invite via email) The SMTP values was validated and worked using EDGE FUNCTIONS Secret Key, I had received a test email. So I am very sure that the SMTP Values are correct. However, even if I copy-paste those values to the Dashboard Custom SMTP Settings, email is not sending. Please do help....