How to connect Discord Gateway API on the NodeJS backend

I want to listen my entitlement create, update and delete events on my backend nodejs app and then save the details in my own database.
6 Replies
d.js toolkit
d.js toolkit2mo ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button!
d.js docs
d.js docs2mo ago
:event: (event) Client#entitlementCreate [email protected] Emitted whenever an entitlement is created. :event: (event) Client#entitlementUpdate [email protected] Emitted whenever an entitlement is updated - i.e. when a user's subscription renews. :event: (event) Client#entitlementDelete [email protected] Emitted whenever an entitlement is deleted. Entitlements are not deleted when they expire. This is only triggered when Discord issues a refund or deletes the entitlement manually.
Sheraz
SherazOP2mo ago
Will I be able to connect the gateway websocket api with my nodejs backend app? How will i tell the Client class to listen for my specific activity entitlement events?
Retro
Retro2mo ago
you should be able to run it unless your backend is serverless or something. other than that, listening for events is quite basic javascript
clownidze
clownidze2mo ago
you can use webhook events for entitlements creation
d.js docs
d.js docs2mo ago
:discord: Webhook Events - Entitlement Create ENTITLEMENT_CREATE is sent when an entitlement is created when a user purchases or is otherwise granted one of your app's SKUs. Refer to the Monetization documentation for details. read more

Did you find this page helpful?