All Questions
Tagged with supabase-js node.js
8 questions
0
votes
0
answers
62
views
Webhook event for new user created on Supabase
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 ...
1
vote
1
answer
165
views
Unable to retrieve publicUrl from supabase api even with no RLS enabled
I am learning to use Supabase storage to store files (images) and retrieve the public url and store them in my database to save space. but the issue is that I am able to upload it to supabase but when ...
0
votes
1
answer
2k
views
How to set Supabase auth credentials in NodeJS?
I'm attempting to break my supabase database interactions out of my client Flutter app and into it's own dedicated NodeJS express app. At the moment, I've attached the credentials from the logged in ...
1
vote
2
answers
1k
views
How can I sign out a user with Supabase from an express API endpoint?
I am using node and express as a backend for API endpoints with Vite as a frontend. So far, I have been able to send info from frontend to backend for signing in and signing up a user. However, I've ...
1
vote
1
answer
1k
views
Supabase & NodeJS: Invalid claim: AuthApiError: invalid claim: missing sub claim with getUser(jwt)
I have a custom backend that needs to authenticate users before letting them request some Express endpoints.
It works that way: NextJS (front-end) sends a request to NodeJS/Express (backend) with a ...
0
votes
0
answers
919
views
How do I insert Google OAuth data from Supabase signup into external table
my supabase login/signup with Google works fine and the data is being saved in auth.users(). But I am having issues also saving my user data eg email, id to an external table named "accounts"...
0
votes
1
answer
2k
views
How to mock supabase APi select requests in nodejs
I use supabase for my express js backend.
This is how I have defined my supabase client:
const config = require('../config/env');
const supabase = require('@supabase/supabase-js');
const ...
0
votes
1
answer
3k
views
Supabase Session Null/Undefined Even After Successful Authentication
I have an Express server that right now signs into Supabase. The authentication is successful as when I print data it gives me the user and session information. But when I try to retrieve the user or ...