DiscordChatExporter/Readme.md

35 lines
1.3 KiB
Markdown
Raw Normal View History

2017-07-12 13:18:00 -04:00
# DiscordChatExporter
Command line executable that can export [Discord](https://discordapp.com) channel chat logs to a pretty HTML file.
2017-07-13 12:38:17 -04:00
## Screenshots
![](http://www.tyrrrz.me/projects/images/discordchatexporter_1.png)
2017-07-13 02:32:44 -04:00
## Features
2017-08-16 16:50:05 -04:00
- Produces output styled similar to the Discord's light theme
2017-07-13 02:32:44 -04:00
- Displays user avatars
2017-08-16 16:50:05 -04:00
- Groups messages by author and time
- Handles Discord markdown characters
- Converts URLs to links
- Inlines attached images with a link to the full version
- Inserts download links for other types of attached files
- Marks edited messages with a timestamp
2017-07-13 02:32:44 -04:00
2017-07-12 13:19:35 -04:00
## Usage
2017-07-12 13:18:00 -04:00
Executing the application requires an access token and channel ID as parameters.
You can get your token by opening the Discord app, pressing `Ctrl+Shift+I`, navigating to `Storage > LocalStorage > discordapp.com` and extracting `token`'s value.
You can get the channel ID by enabling `Developer Mode` in `Settings > Appearance` and then right clicking on the channel and clicking on `Copy ID`.
2017-08-05 14:49:29 -04:00
- `DiscordChatExporter.exe /token:REkOTVqm9RWOTNOLCdiuMpWd.QiglBz.Lub0E0TZ1xX4ZxCtnwtpBhWt3v1 /channelId:459360869055190534`
2017-07-12 13:18:00 -04:00
2017-07-12 13:19:35 -04:00
## Libraries used
2017-07-12 13:18:00 -04:00
- [HtmlAgilityPack](https://github.com/zzzprojects/html-agility-pack)
- [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json)
- [Tyrrrz.Extensions](https://github.com/Tyrrrz/Extensions)