discord / cloudflare-sample-app

Example discord bot using Cloudflare Workers
MIT License
289 stars 79 forks source link

NOT AN ISSUE: how to get command parameter #33

Open appsdevpk opened 8 months ago

appsdevpk commented 8 months ago

what if i want to give user the option to specify command paramter like /aww 123, here i want to get 123, how i can do it?

imgta commented 2 weeks ago

what if i want to give user the option to specify command paramter like /aww 123, here i want to get 123, how i can do it?

If you've already set up the param in your slash command's options, you can get the argument value from the interaction object:

const input = interaction.data.options[0].value;