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'm indirectly using this library through [matterbridge](https://github.com/42wim/matterbridge) and durring the [connection issues on Dec 15, 2019](https://status.discordapp.com/incidents/01tts8x5ymhd), I had matterbridge and my bot running in a different language entirely attempting to...

I think being able to target WASM would allow for some interesting use cases of this library. **what I have found so far:** - bot token errors on ws open...

help wanted
feedback

Proof of concept implementation in #651 # Problem The `New` function does not express its intent in its type. it is also very unintuitive to use. ```go func New(args ...interface{})...

I would like to change the line 664 in state.go from ```golang if len(c.Messages) > s.MaxMessageCount { ``` to the following ```golang if s.MaxMessageCount != 0 && len(c.Messages) > s.MaxMessageCount...

Seems to be a type issue in handling the GUILD_CREATE event in my case, I've also seen several others. It's unclear to me what's actually happening under the covers. ```...

As of right now, a fairly common reconnection scenario is discord invalidating your session upon a reconnect, forcing a re-identify (Opcode 9). This results in the following error: 2018/05/08 13:03:36...

Hi, Is there any way to set the ParentID of a channel to something like null (using ChannelEdit struct) to move a channel out of any category ? Setting ParentID...

Right now if you have code running that is sending on or receiving on one of the Opus voice channels you won't get notified about important changes - like if...

feature

Implementation of newly added forum channels. ## Useful links - [Documentation](https://discord.com/developers/docs/topics/threads#forums) - [Changelog](https://discord.com/developers/docs/change-log#forum-channels-release) - https://github.com/discord/discord-api-docs/pull/4761

feature
high priority

The current Go version is 1.13, it would be interesting to target a newer version (>=1.18) to be able to make use of new features and improvements to the language.

help wanted
feedback
breaking changes