2,209 questions
-5
votes
0
answers
47
views
what's up with supabase + prisma [closed]
Can't reach database server at aws-1-ap-south-1.pooler.supabase.com:5432
Please make sure your database server is running at aws-1-ap-south-1.pooler.supabase.com:5432.
Getting this error multiple ...
-1
votes
0
answers
129
views
When a request goes stale it will be stuck in fetching mode [closed]
I'm using Supabase locally to develop my edge functions, running the whole thing with supabase start.
I'm using React-Query to call invoke an edge function to retrieve a list of users. On first load (...
-1
votes
0
answers
44
views
supabase insert problem showing api-key not found
https://xhhuciswgkgxqgbfprbq.supabase.co/rest/v1/tasks?select=*
{"message":"No API key found in request","hint":"No apikey request header or url param was found.&...
0
votes
1
answer
85
views
Can't insert rows into Supabase profile table even after creating the RLS policy to do so for the sign up feature
I am quite new to Supabase.
Basically, I am doing auth using Supabase and have this table called "profiles" with columns:
id - UUID
username - text
email - text
Now when I create a new ...
0
votes
0
answers
59
views
Error `set local ivfflat.probes` when using vecs query from supabase
I am trying to use the vecs library from supabase (see github and docs pages).
I have created a collection and upserted some documents using an adapter and HNSW index like this:
docs = vx....
0
votes
0
answers
27
views
How to create a vecs client using a Google Cloud connector based SQLAlchemy engine
I am trying to use vecs this library here and GitHub page but I have a big issue. When trying to create a vecs client it needs only the connection string Client(connection_string="...
0
votes
0
answers
34
views
How to save update and retrieve avatar or profile image with REST API call?
I am trying to get token and register user in agora chat using supabase edge function, everything works fine but avatar url is not being saved. Do agora chat allow to save extra user attributes at all?...
-2
votes
0
answers
76
views
How can I auto-confirm on supabase authentication?
I have a problem on my React + Supabase project.
When user sign up, it moves to subscription page automatically.
In that case, when he paid successfully, I gonna make him can use that account without ...
0
votes
0
answers
26
views
Supabase Flutter: user is still logged in when on password recovery flow and closes the app
Im currently working on my password reset flow and I use resetPasswordForEmail to send an email with a deeplink redirecting to my app's reset password page. My problem is that when a user closes the ...
0
votes
0
answers
61
views
Is there a reason why when I add authorization to a call to an edge function in SupaBase, no matter what I change or do it times out?
I am working on an edge function for my supabase database and I am trying to use Postman to test calling it.
When I do not add any headers for authorization I immediately receive a 401: Missing ...
0
votes
0
answers
63
views
How to set up subdomain-based multi-tenancy with Next.js, Supabase (DB/Auth), and next-intl?
I’m trying to build a multi-tenant platform similar to how Sentry works, where the root domain (e.g. https://sentry.io/en) serves the marketing site, and each tenant has its own localised subdomain (e....
0
votes
0
answers
63
views
failed to send batch: ERROR: Out of memory (SQLSTATE XX000)
When calling supabase db reset I get this error: failed to send batch: ERROR: Out of memory (SQLSTATE XX000).
It breaks because of one migration where I create a db function that uses the postgres net ...
0
votes
0
answers
45
views
Supabase GoTrue Ignores Custom Email Templates on Docker / Coolify
I'm running a self-hosted Supabase instance on Coolify using Docker Compose. I'm trying to override the default GoTrue email templates with my own custom HTML files, but GoTrue consistently ignores ...
0
votes
0
answers
241
views
redirect_uri_mismatch and requested path is invalid errors despite correct configuration
I've encountered a Supabase Google OAuth flow issue that only occurs when testing with Expo Go. The authentication flow works perfectly in a development build created with eas build, but fails in Expo ...
0
votes
1
answer
81
views
How to verify JWT tokens from Supabase in ASP .Net Core Web API?
I am trying to use supabase auth in my React with TypeScript and Vite frontend and it works there but when I try to access the API it is not able to verify the token and I do not undestand why? Is ...