224 questions
0
votes
0
answers
42
views
supabase postgis tile server and javascript decoding base64 encoded data
I was trying to serve vector tiles on the fly using an rpc function in superbase but somehow when the responce arrives in the front end using a custom protocol. the vector tiles are not displayed.
...
0
votes
0
answers
151
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
1
answer
89
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
53
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
vote
0
answers
203
views
AuthApiError: Invalid Refresh Token: Refresh Token Not Found supabase
I'm developing a web app using remix.js and supabase as BAAS. By default my access token expire after an hour. Whenever I try to login from a new browser (with no previous cookies) or logout and login ...
2
votes
1
answer
64
views
Supabase Storage Upload Works on Desktop but Fails on Mobile
I’ve run into a weird issue with Supabase Storage and could really use some help.
I'm building a document uploader using Supabase Storage. Everything works perfectly on desktop, but when I try ...
0
votes
1
answer
273
views
How to authenticate a user with Supabase using only userId or email?
I need to create a permanent link that a user can use to authenticate in a Nextjs14 app at any time and as many times as they want.
I tried using generateLink, but this link expires after 24 hours or ...
1
vote
1
answer
227
views
ERROR Integrating [email protected] in React Native CLI – Cannot assign to property ‘protocol' which has only a getter, js engine: hermes
I have created a React Native CLI app project in TypeScript with Supabase integration. I’ve set up my client like this:
import { createClient } from '@supabase/supabase-js';
export const supabase = ...
0
votes
0
answers
126
views
supabase.auth.updateUser({ email }) freezes my React Native app (infinite loader, can't sign out)
I'm using Supabase with React Native (Expo) for user authentication.
When I try to update the user's email using the following code:
await supabase.auth.updateUser({ email: newEmail });
👉 The request ...
0
votes
1
answer
234
views
How can I connect my backend server to Supabase?
I'm currently working on a project that involves a native client app, a backend server (Node.js), and Supabase for both the database and authentication.
Here's the architecture I'm considering:
The ...
0
votes
1
answer
37
views
Mysterious 404 with next-intl and supabase auth
I have many mysterious 404 errors that seem to circumvent my app router integration with next-intl.
middleware /rider/trip/1321fcf9-91ef-4142-9c31-53934d1383ad
response: 200
✓ Compiled in 1ms
GET /...
0
votes
0
answers
119
views
Build SMS Auth with Custom Provider in Supabase
I'm trying to add SMS OTP to my flutter app using custom provider I was reading about this article : https://medium.com/@lavisht22/optimizing-sms-authentication-costs-with-supabase-a-deep-dive-...
0
votes
0
answers
69
views
How to have different environments for an Expo app with Supabase?
I have a React Native app built with Expo and Supabase. It works great in development. Now, I want to create a staging and production environment on Supabase (like on Firebase). I couldn't find how to ...
0
votes
0
answers
110
views
How to fix broken image on storage bucket of Supabase
I'm uploading profile image from React, Next.js frontend to Supabase backend. It was successfully uploaded, but the image is broken. And I found that the type of the upload image is originally .png ...
0
votes
0
answers
147
views
I'm trying to send a confirmation email (to verify a new user's email ), but Supabase keeps sending a OTP instead
I want to send users a magic link so they can sign up and get full access to the project. However, Supabase keeps sending a OTP instead of a direct sign-up magic link
const { error } = await supabase....