What is the best way to handle following usecase? ...
# help
d
What is the best way to handle following usecase? Usecase: I've a database of user's device id where I want to be able to send push notifications using Supabase. Is it possible directly or through third party? Any help is highly appreciated. Thanks!
n
Hello @d33pu! This thread has been automatically created from your message in #843999948717555735 a few seconds ago. We have already mentioned the @User so that they can see your message and help you as soon as possible! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ``...`` menu) and select "Leave Thread" to unsubscribe from future updates. Want to change the title? Use the ``/title`` command! We have solved your problem? Click the button below to archive it.
g
To send notifications on database events you would use a trigger function using the HTTP extension or a function hook to call an edge function. In those functions you would access the API of a notification service to send your notification.
n
deepu (2022-05-28)
d
not sure if I can rely on edge function since it is in alpha stage... seems to be like http extension can do the job 👍