0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【DiscordChatExporter】Discordのチャットを保存する方法(更新予定あり)【MacOS】

Last updated at Posted at 2023-08-13

現段階ではただの備忘録です。余力のある際に加筆修正します。

本記事の概要

Discordのチャットをローカルに保存したい!
そんな時に便利な無料アプリケーションがDiscordChatExporterです。

ただ、MacOSではコマンドラインでしか操作ができず、調べていてわかりにくかった点もあったので、備忘録がわりに残します。

本記事でできること:

  • DiscordのチャットのログをHTML形式で保存できる
  • 特定のサーバーやチャンネルのみのチャットのログを保存できるように指定できる

DiscordChatExporterとは

Discordのチャットを保存することができる無料アプリ

コマンドについて

自分の参加するすべてのサーバーのチャットログを出力する

$ dotnet DiscordChatExporter.Cli.dll exporall -t "tokenID"

自分の参加する特定のサーバーのサーバーIDを出力する

$ dotnet DiscordChatExporter.Cli.dll guilds -t "tokenID"

自分の参加する特定のサーバーのチャットログを出力する

先ほど出力したguildIDから、自分の保存したいサーバーのものを確認する。
それを利用して特定のサーバーのみのチャットログを出力する。

$ dotnet DiscordChatExporter.Cli.dll exportguild -t "tokenID" -g サーバーID

自分の参加する特定のチャンネルのチャットログを出力する

$ dotnet DiscordChatExporter.Cli.dll export -t "tokenID" -c チャンネルID

その他コマンドについて

他にも使えるコマンドやオプションは以下のコマンドを用いてターミナルで確認できます。解読が難しかったので今回は自分の使ったものを中心に書き残しましたが、気になる方は見てみてください。

$ dotnet DiscordChatExporter.Cli.dll --help

参考サイト

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?