Skip to content

Instantly share code, notes, and snippets.

@mikeshardmind
mikeshardmind / discord_app_protocols.md
Created March 20, 2023 13:11 — forked from ghostrider-05/discord_app_protocols.md
An unofficial list of discord app protocols

Discord app protocols

Home:

  • /: discord://-/
  • friends: discord://-/channels/@me/
  • snowsgiving (Discord's yearly event in december): discord://-/snowsgiving
  • nitro: discord://-/store
  • message requests: discord://-/message-requests
import trio
async def main():
async with ws_connect("ws://127.0.0.1:8765") as websockets:
await websockets.send("Hello, world.")
message = await websockets.recv()
print(message)
trio.run(main)