discordcr
discordcr copied to clipboard
Minimalist Discord library for Crystal
EDIT(Oct. 2022): I'm still around and the branch is still being maintained with support of the newer interaction related features. Please report any issues if you found any! Now that...
This adds Mappings, API methods, Permissions, Websocket, Caching for the recently released Guild Scheduled Events Relevant docs are [here](https://discord.com/developers/docs/resources/guild-scheduled-event). The commits have been separated by each aspect for ease of...
See discord/discord-api-docs#4583
Buttons
Buttons are fast approaching, along with other fancy new interactive user elements. Buttons are grouped inside of a _generic_ component group (`type: 1`) of interactive elements. Example payload: ```json {...
Relevant docs https://discord.com/developers/docs/resources/webhook#edit-webhook-message https://discord.com/developers/docs/resources/webhook#delete-webhook-message
**OP Codes** - `on_raw` originally from https://github.com/shardlab/discordcr/issues/26#issuecomment-913280077 - `on_heartbeat` - `on_heartbeat_ack` - `on_hello` - `on_identify`
Was gonna include this in #24 , but we've got quite a bit of renaming etc to do to follow discord on this change. Change happened with API v8.
https://github.com/shardlab/discordcr/blob/df22ea8f9499756949dfa16ed629bd1724b77e05/src/discordcr/rest.cr#L430-L431 Not sure where the issue lies, but trying to send a IO without a filename, resulted in discord dropping the upload altogether. Further investigation required.
in discordjs I used to simply add the url of the video or image in place of the text and the url was appended with the video, and in discordcr?...