234 questions
0
votes
0
answers
36
views
Expo Dev Client (iOS) + Supabase — TypeError: Network request failed in custom build (`expo run`)
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 ...
0
votes
0
answers
19
views
Supabase Realtime subscription not working with custom JWT and RLS in Next.js + NextAuth setup
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 ...
0
votes
0
answers
27
views
Is it possible to have supabase-js download only the first frame of a video to make a thumbnail?
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 ...
0
votes
0
answers
40
views
Login is possible but my supabase user / session is not "authenticated", GoTrueClient getSession() session from storage null
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...)....
0
votes
0
answers
25
views
Supabase Db Query is super slow with simple test query using service role
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 ...
0
votes
0
answers
28
views
Supabase api function not call after switching tab
i have this useEffect in my component file
const loadFeeSettings = async () => {
console.log("1", 1);
const settings = await getMembershipFeeSettings();
console.log(&...
0
votes
0
answers
42
views
Supabase & react-native iOS image upload inconsistent `TypeError: Network request failed`
The problem
I've been struggling with this problem for a few weeks now and have no idea how to solve it. I am originally a Python coder, but I am learning TypeScript and React-Native through this ...
0
votes
0
answers
81
views
How to implement automatic Google Calendar API authentication through supabase without user OAuth flow?
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 ...
0
votes
0
answers
20
views
how to regroup some datas under the same label with supabase?
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:
{
...
0
votes
0
answers
20
views
Vite hotreload breaks supabase client
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
...
0
votes
0
answers
62
views
Failed to fetch loading "GET" in my Next.js 15 app
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 ...
0
votes
0
answers
117
views
Why is my Supabase Password Reset in React not verifying the session correctly?
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 ...
0
votes
0
answers
22
views
Supabase js query filtering
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 ...
1
vote
1
answer
126
views
Why would the Supabase client cause a MiniOxygen error with "dev" script but work with "preview" script?
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 ...
0
votes
1
answer
27
views
PostgREST API - mutiple OR conditions. Is it possible?
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 ...