Help with Twilio Functions.
when i try to update my db trough twilio i get this error.
data { error: { message: 'No API key found in request' }, data: null, count: null, status: 401, statusText: 'Unauthorized', body: null }
const test = await supabase
.from("person")
.update({
is_coming,
arrives_in,
})
.match({ phone: from });
when i test it with my other project supabase instance it works, but somehow doesn't with the new one.
data { error: { message: 'No API key found in request' }, data: null, count: null, status: 401, statusText: 'Unauthorized', body: null }
const test = await supabase
.from("person")
.update({
is_coming,
arrives_in,
})
.match({ phone: from });
when i test it with my other project supabase instance it works, but somehow doesn't with the new one.