Created
December 29, 2016 02:29
-
-
Save ianklatzco/769d9e3a991dc2f443a2e105b0157117 to your computer and use it in GitHub Desktop.
sends messages to a discord channel using a bot via http POST
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# post a message to discord api via a bot | |
# bot must be added to the server and have write access to the channel | |
# you may need to connect with a websocket the first time you run the bot | |
# use a library like discord.py to do so | |
import requests | |
import json | |
channelID = "your_id_goes_here" # enable dev mode on discord, right-click on the channel, copy ID | |
botToken = "your_token_here" # get from the bot page. must be a bot, not a discord app | |
baseURL = "https://discordapp.com/api/channels/{}/messages".format(channelID) | |
headers = { "Authorization":"Bot {}".format(botToken), | |
"User-Agent":"myBotThing (http://some.url, v0.1)", | |
"Content-Type":"application/json", } | |
message = "hello world" | |
POSTedJSON = json.dumps ( {"content":message} ) | |
r = requests.post(baseURL, headers = headers, data = POSTedJSON) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nvm I had forgotten the last part of the endpoint