discordgo icon indicating copy to clipboard operation
discordgo copied to clipboard

(Golang) Go bindings for Discord

Results 192 discordgo issues
Sort by recently updated
recently updated
newest added

I use `AddHandler` for `*discordgo.InteractionCreate` but I got this bug ``` -- | -- | --   |   | 2023-06-20 17:46:49 | 2023-06-20T10:46:49.719113376Z stderr F /go/pkg/mod/github.com/bwmarrin/[email protected]/event.go:171 +0x16a |     |   | 2023-06-20...

Hi, It seems that discordgo does not request Discord for the initial member list, even when the member intent is enabled. ```go discord, err = discordgo.New("Bot " + cfg.DiscordToken) //...

InteractionResponseEdit use function WebhookMessageEdit ``` func (s *Session) WebhookMessageEdit(webhookID, token, messageID string, data *WebhookEdit, options ...RequestOption) (st *Message, err error) { uri := EndpointWebhookMessage(webhookID, token, messageID) var response []byte if...

When I try to get the attachment of a slash command I can't use the available option. Can you please fix that? Because when I try to use `i.Interaction.ApplicationCommand.Data().Options[0].Value` I...

Hi just wanted to see if anyone has had anything like this before? Bot runs the ready function, then errors, then runs again and connects successfully. Not a big issue...

[0001-Support-to-Proxy-of-websocket-listennig.patch](https://github.com/bwmarrin/discordgo/files/11363935/0001-Support-to-Proxy-of-websocket-listennig.patch)

The tracking in state.go uses a lock to protect against concurrent modifications to its own structs. However, when updating cached objects, it overwrites them in place instead of caching a...

If your bot has completely stopped connecting to voice or speaking, please update to one of the versions that is compatible with the one you're using from the list below....

breaking changes

Every interaction has unique token, therefore a call of FollowupMessageCreate will create a bucket per interaction. This might cause the bot to OOM eventually. Originally posted by @wu56781234 in https://github.com/bwmarrin/discordgo/discussions/1332