Frequently Asked Questions
Before asking a question, look at these :)
How to make buttons inline?
await <discord.abc.Messageable>.send(
...,
components = [
Button(...),
Button(...),
Button(...)
]
)await <discord.abc.Messageable>.send(
...,
components = [
[
Button(...),
Button(...),
Button(...)
]
]
)How do I remove components?
How do I ignore the interaction?
Global event
TypeError: send() got an unexpected keyword argument 'components'
Handle multiple interacts
Disabling the components for specific users
I get ''404 Not Found (error code: 10062): Unknown interaction''
Using custom emoji
Can I set my own colors for buttons?
Last updated