0
1

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.

Discord WebHookを使った通知をちゃちゃっと作る

Last updated at Posted at 2023-06-19

はじめに

Makefile内でDiscordのWebHookを使っていたのを見て、かっこよかったのでメモ

WebHook URLの取得

Discord > テキストチャンネルの編集ボタン > 「連携サービス」 > 「ウェブフック」 から取得できます。

curlを使って送信

curlを使えば簡単に送信できます。

-Fオプションを使います。

 -F, --form <name=content>  Specify multipart MIME data

送信したいのがテキストの場合

curl -X POST -F content="Hello, world!" https://discord.com/api/webhooks/****/**** &> /dev/null

送信したいのがファイルの場合

ファイルのパスの前に@をつけないといけません。

curl -X POST -F file=@test.txt https://discord.com/api/webhooks/****/**** &> /dev/null
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?