Supabase – referring primary & foreign key row is always null
I have a profiles table and a subscriptions table that has the primary key of profile_id that references the id of profiles as a foreign key.
Supabase – referring primary & foreign key row is always null
I have a profiles table and a subscriptions table that has the primary key of profile_id that references the id of profiles as a foreign key.
If an error occurs when using supabase’s auth.signinwithpassword, it cannot be caught
function Login() { const router = useRouter(); const supabaseClient = supabase(); const { register, handleSubmit } = useForm({ mode: ‘onChange’ }); const onSubmit = async (data) => { try { const { data: loginData, error } = await supabaseClient.auth.signInWithPassword({ email: data.email, password: data.password, }); if (error) throw error; const userData = await supabaseClient.auth.getUser(); const { […]
How to retrieve join-table extra data in a many-to-many relationship using Supabase?
For a many-to-many relationship between two tables, I have a 3rd join-table that contains extra data.
Supabase getting error when reseting the password
I’m having this error AuthSessionMissingError: Auth session missing!
on local development when i tried to update user password on my password reset flow my app is built on nextjs. I had recieved the email with the url configured to redirect but it showed like this:
How to allow external users to access certain tables in my Supabase DB?
I have two tables in my Supabase DB, called users
and tweets
. I’ve created a new role called external_user_twitter_data
with “user can sign in” permission.
Is it possible to have Supabase perform a task on a timer triggered by the user?
For example, I’m building a saas app that has that a batch function on the frontend that allows a user to create up to 300 records at a time they see fit. It’s a bit more complex than that, there’s business logic and calls to external apis but what is the best way this can be achieved using supabase?
Where are this API keys in supabase?
I am doing a supabase next.js project but I can’t find this data in my supabase project where are they?
Where are this API keys in supabase?
I am doing a supabase next.js project but I can’t find this data in my supabase project where are they?
Use Supabase as an OAuth provider
I’m currently evaluating using Supabase as the backend for a new project that involves Alexa skills and I’d like to use account linking. Can we use Supabase itself to mint custom tokens and refresh tokens to support an authentication code protocol as required by Alexa skills?