Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
39 views

I’m facing a strange Supabase RLS issue that I can’t resolve after days of debugging. I have a public review flow: Users should be able to submit reviews without logging in (anonymous users) and also ...
Noor Khalil's user avatar
Advice
1 vote
1 replies
50 views

In my case, I only want authenticated users to perform a SELECT query on my database, so I set up my RLS Policy for this scenario. This is where I am hitting an issue. With RLS enabled, I need to let ...
Boon Jefferson Brigoli's user avatar
0 votes
1 answer
46 views

I am using Expo Image Picker to select an image from the gallery so I can upload the file to a Supabase storage bucket called 'avatars'. In the Supabase storage docs they say: For React Native, using ...
1million_ naira's user avatar
-1 votes
0 answers
65 views

I am new to supabase I need help starting my supabase server locally I'm working on a project that was initially started with Lovable AI and uses Supabase as it's backend. I recently joined the team ...
MarchMadnessss...'s user avatar
0 votes
0 answers
50 views

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. ...
Nuwe Ariho's user avatar
0 votes
0 answers
201 views

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 ...
Daniel's user avatar
  • 126
0 votes
1 answer
147 views

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 ...
frzzled's user avatar
  • 92
0 votes
0 answers
65 views

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 ...
Ncls7523's user avatar
1 vote
0 answers
229 views

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 ...
Rooty Joe's user avatar
2 votes
1 answer
84 views

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 ...
GRACE OLABODE's user avatar
0 votes
2 answers
303 views

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 ...
SERG's user avatar
  • 3,997
1 vote
1 answer
280 views

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 = ...
Anoeloeby's user avatar
0 votes
0 answers
144 views

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 ...
dads's user avatar
  • 11
0 votes
1 answer
327 views

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 ...
gonchan's user avatar
1 vote
1 answer
57 views

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 /...
Thomas's user avatar
  • 474
0 votes
0 answers
156 views

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-...
dzmoxn's user avatar
  • 48
0 votes
0 answers
73 views

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 ...
unadivadantan's user avatar
0 votes
0 answers
123 views

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 ...
Vitalii Vasyliev's user avatar
0 votes
0 answers
166 views

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....
Sohaib Ashraf's user avatar
0 votes
0 answers
114 views

I want to use the node js runtime with the supabase ssr package, if I don't use edge runtime my code doesn't work, but I want to use node js runtime some packages doesn't work well with edge, also I'm ...
Mr Dsa04's user avatar
0 votes
1 answer
113 views

I'm testing out how to query the database with GraphQL from within a Supabase edge function. Within the GUI of Supabase we can clearly execute the GraphQL query to retrieve the desired data: However, ...
DarkLite1's user avatar
  • 14.9k
0 votes
0 answers
358 views

I'm using Expo + Supabase and recently switched from Expo Go to a custom development build using: npx expo prebuild npx expo run:ios Since I'm using custom native modules that aren’t supported in ...
user30345391's user avatar
0 votes
1 answer
465 views

I'm building a website using Next.js, NextAuth, and Supabase. I'm not using Supabase's built-in auth — instead, I manage a custom users table and generate custom JWTs using NextAuth during sign-in. In ...
ergs0204's user avatar
0 votes
0 answers
71 views

So, I'm developping an easy interface for my client, so they can make content for an app that use supabase as a backend. Amoung the types of contents, their is stuffs that require my client to upload ...
Rorp's user avatar
  • 136
0 votes
0 answers
142 views

The stack: SvelteKit / Supabase (with docker) To authenticate the users i followed the supabase tutorial (so my code strictly follows that). It works as i receive the user's data (profile, session...)....
alegarn's user avatar
0 votes
0 answers
179 views

A Simple db query in a table with just 2 rows takes atleast 12 seconds, sometimes timeout! What is the mistake in my code? My code works so credentials are correct. I don't use Supabase auth, so I use ...
Mg Bhadurudeen's user avatar
0 votes
0 answers
58 views

i have this useEffect in my component file const loadFeeSettings = async () => { console.log("1", 1); const settings = await getMembershipFeeSettings(); console.log(&...
Sagar Dhandhukiya's user avatar
0 votes
0 answers
144 views

Context I'm building a React application that needs to interact with Google Calendar API to create events automatically. Currently using OAuth2 which requires user interaction, but I need this to work ...
Francisco Piñon Andrés's user avatar
0 votes
0 answers
27 views

So, I have this table with some datas (in supabase): data1 data2 data3 data4 1 2 3 4 and what I want is that my supabase.from('table').select('data1,data2,data3,data4') return datas like that: { ...
Rorp's user avatar
  • 136
0 votes
0 answers
51 views

I'm stuck with a weird problem where the supabase client basically stops working as soon as I had a hot reload happen. I have a straight forward supabase client setup in a seperate file like this ...
Frnak's user avatar
  • 6,862
0 votes
0 answers
126 views

I wanted to use Supabase for both auth and general database interaction in my Next.js 15 app, however when I navigate to some of my dynamic routes, and even some that aren't dynamic but still use ...
Jayden Priestley's user avatar
0 votes
0 answers
305 views

I am working on a password reset feature for a flutter application. It sends the user an email which sends them to a website which should handle the password reset. However, I am having issues with ...
A1X1's user avatar
  • 1
0 votes
0 answers
38 views

I'm trying to make a query, and it keeps bringing something that I don't want. I have a db with users, each user has contracts. Those contracts could be active or past due. When I try to search for ...
Javier Langer's user avatar
1 vote
1 answer
245 views

In my up to date shopify hydrogen/remix app, I am trying to import the supabase-js package into my server.ts or specific route. When I initialize the createClient function, then run the "shopify ...
jip101's user avatar
  • 25
0 votes
1 answer
48 views

I'm trying to create a query using PostgREST API with multiple OR conditions. Essentially I need PostgREST query similar to this SQL query SELECT * FROM people WHERE condition1 AND (condition2 OR ...
Miloš Đorđević's user avatar
0 votes
0 answers
34 views

Based on the Supabase docs, & Configuration tool, I have setup the following to allow for Apple Sign In on web app: Account ID: 10 Characters Service ID: com.my.webapp.service - setup to allow ...
Phil Lucks's user avatar
  • 4,162
0 votes
1 answer
4k views

i have this Next js version with supabase : "@supabase/auth-helpers-nextjs": "^0.10.0", "@supabase/supabase-js": "^2.48.1", "next": "15.1.6",...
user29473441's user avatar
0 votes
1 answer
676 views

I have created a table in supabase called blogposts, and have added couple of rows. Here is what the columns look like: id title description date views readingTime imageUrl author I have created ...
Gleb's user avatar
  • 541
0 votes
1 answer
56 views

This is the code using CommonJS that works: const { createClient } = require('@supabase/supabase-js'); exports.handler = async (context, event, callback) => { const supabaseUrl = '...
Rick Girardin's user avatar
0 votes
0 answers
51 views

My Goal is to get the coordinates in human readable form without using a seperate request as follows. supabase.rpc('fn') I have a table named live_route and it is linked to an other table named ...
Muhammad Abubakar Zorrain's user avatar
1 vote
2 answers
281 views

import { createClient } from "@supabase/supabase-js"; export const supabase = createClient( process.env.NEXT_PUBLIC_SUPADB_URL || "", process.env.NEXT_PUBLIC_SUPADB_API_KEY || ...
Winston Brown's user avatar
0 votes
1 answer
142 views

I am using React with Typescript and Supabase. To create a type from a complex query I use the schema provided by supabase like this: import { QueryResult, QueryData, QueryError } from '@supabase/...
Karl Wolf's user avatar
  • 373
1 vote
0 answers
179 views

I have created a simple app with vue.js frontend and an express.js backend. It has a login that works properly and in the databse I can see one user and his ID. I have enabled row level security for ...
Maxim's user avatar
  • 719
0 votes
0 answers
78 views

I have a project in supabase for a react native mobile client. I use a custom oauth flow where a service called autolab manages all my auth and gives me a token which I then convert into my own jwt on ...
Dinakaran Karunakaran's user avatar
0 votes
1 answer
157 views

I have two tables bands_profiles and bands. I'm trying to get all bands that a user is part of. The JS query I've written is const usersBands = await supabase .from("bands_profiles") ...
OrhanC1's user avatar
  • 1,409
0 votes
0 answers
35 views

Ques How to updateUser() without moving away from the registration screen if subscribed to onAuthStateChange() ? I want to reroute when Auth User changes on login & logout, but I dont want to ...
kernelman's user avatar
  • 1,052
0 votes
0 answers
292 views

Created a new VS Code project with a blank HTML file added a button to it (to activate a database request for this test) Got a supabase account, created database/tables no problem, installed supabase ...
mrfrisky330's user avatar
1 vote
0 answers
132 views

I am currently working on fintech mobile application with Supabase and my backend. Is it possible that to have an event triggered when a new user is created. i want to use supabase Edge functions to ...
Bishop Possible's user avatar
0 votes
0 answers
61 views

I have this code: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, ...
Brad Mathews's user avatar
  • 1,917
0 votes
0 answers
55 views

I am using the Supabase signup method to authenticate users in a mobile app. I want to make API requests to my Next.js server, where I also use the Supabase SDK to interact with the database. I have ...
Nisarg's user avatar
  • 1

1
2 3 4 5