From what I understand, it's not yet possible to s...
# off-topic
r
From what I understand, it's not yet possible to store data from a webhook into Supabase. Is this correct?
g
Can you provide a bit of context on what you want to do? Edge functions might be a way if you don't control the webhook. https://supabase.com/docs/guides/functions
There are two examples here of using edge functions to handle webhooks: https://github.com/supabase/supabase/tree/master/examples/edge-functions
r
Thanks, I need to add data from a Paddle webhook to the database and return a license key.
I see functions can use
createClient
to interact with the database
Really new to Edge Functions and DBs
Also really new to Deno, so I'll have to figure out how it can verify the Paddle webhook. They only have a Node example, but with a bit of luck Deno fully supports the modules used in it.
This video was really helpful

https://www.youtube.com/watch?v=1Tz0FBoqCTQ

2 Views