Skip to content

Instantly share code, notes, and snippets.

@book000
Created February 24, 2022 11:04
Show Gist options
  • Save book000/271c716ed34c7ea64a02f55078a82935 to your computer and use it in GitHub Desktop.
Save book000/271c716ed34c7ea64a02f55078a82935 to your computer and use it in GitHub Desktop.
#!/bin/bash
send_message() {
token=""
channelId=""
curl \
-X POST \
-H "Content-Type: application/json" \
-H "Authorization: Bot $token" \
-d "{\"content\": \"$1\"}" \
"https://discord.com/api/channels/$channelId/messages"
}
send_message "hoge piyo"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment