2,243 questions
0
votes
0
answers
14
views
Supabase Auth: auth.signInWithPassword always returns Invalid login credentials
I am using the Supabase JavaScript client in a Next.js project. User registration completes successfully, and the new user appears in the auth.users table. However, when I attempt to log in with the ...
0
votes
0
answers
22
views
Local-first supabase; how to synchronzing remote-id and local-id to a single id?
Iβm building a local-first React Native app using WatermelonDB. Users start offline with a locally generated UUID stored in WatermelonDB. Later, when they authenticate with Supabase, Supabase ...
-2
votes
0
answers
17
views
Does anyone know how to connect integrate Cal.com in a custom booking form and connect it to SupaBase? [closed]
I'm creating a custom booking page where people can enter their contact and info and then book an appointment. I don't want to use cal.com's embed. I want it to be a part of the site instead of just ...
0
votes
1
answer
32
views
How to implement auth in Supabase without mixing server actions and client actions?
I am using Supabase and NextJS in my app to implement authentication but the majority of my auth actions are server side with the exception being the sign-out action as the Supabase docs advise using ...
0
votes
0
answers
59
views
Permission denied despite correct RLS, as supabase.auth.getUser() returns null on server
I'm building a Next.js 14 (App Router) application using Clerk for authentication and Supabase for the database. Despite following the latest integration guides, I'm stuck on a persistent 42501 ...
0
votes
0
answers
35
views
Manage session/authentication with RLS
Started to use supabase and focus a bit on auth/session ...
I have a simple Node app with signInWithPassword and a endpoint getClients.
My table has a policy for SELECT
alter policy "Enable read ...
-1
votes
0
answers
16
views
Prisma P1001 with Supabase direct connection (5432) β pooler works but direct fails [closed]
Iβm trying to use Prisma with Supabase Postgres.
My .env:
# Pooler (for runtime)
DATABASE_URL="postgresql://postgres.mgpcneuzsatnjjbccdbq:[email protected]:6543/...
0
votes
1
answer
39
views
App not fetching any data from Supabase, only after the session expires hours later [closed]
I'm building a React Native app with Expo and Supabase auth and I'm experiencing issues where:
The app works perfectly after sitting unused for 2+ hours
As soon as I reload/restart the app, the app ...
1
vote
1
answer
58
views
+50
How can I make HTTP requests from within a Supabase Edge Function?
I have a supabase edge function and I am trying to call another API.
import "jsr:@supabase/functions-js/edge-runtime.d.ts";
Deno.serve(async (req: Request) => {
try {
const ...
0
votes
1
answer
50
views
Getting Error: @prisma/client did not initialize yet. Please run "prisma generate" and try to import it again
This is the error it's giving when I run npm run build:
ml@M-----MacBook-Air skyfold.dev % npm run build
> [email protected] build
> next build
β² Next.js 15.4.6
- Environments: .env
...
1
vote
1
answer
44
views
Supabase Error: "AuthApiError: Request rate limit reached"
I've been working on a project on Next.js 14.1 using Supabase.
I also use Supabase Auth for session and cookies storage. There is an error that happens really often and I haven't found a real solution ...
0
votes
0
answers
44
views
React + Supabase web app issues on iPhone and Safari browser
I am building a web app using React for my frontend and Supabase for the database, auth and also edge functions. Using Supabase auth, I have implemented reset password logic which works well when I ...
0
votes
0
answers
15
views
Is it possible to capture botscore on Supabase Edge Function?
I'm building a Supabase Edge Function to automatically ban suspicious users based on Cloudflare bot detection. I want to access the bot score for incoming requests (similar to metadata.request.cf....
0
votes
1
answer
33
views
Filter based on an array in react admin
I am using react admin and I have a view that contains a column which has a bunch of ids [1, 2, 3] and I have an id based on which I want to filter.
<List
resource="view"
filter={...
0
votes
2
answers
71
views
Upsert only columns that have a value that is not undefined or null using @supabase/ssr
I am trying to upsert a table when a web hook is triggered. This web hook only returns the updated fields, so sometimes name and notify fields are missing. The only field that is always coming from ...