Skip to content

GattoDev-debug/ps4discord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PS4 Discord WebUI

Simple Python FastAPI web UI to browse guilds/channels and send messages using a Discord token placed in config.json.

Setup

  1. Create a virtual environment and install requirements:
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
  1. Copy config.json.example to config.json and add your Discord token:
{
  "token": "YOUR_DISCORD_TOKEN"
}
  1. Run the app:
uvicorn main:app --reload --host 0.0.0.0 --port 8000
  1. Open http://localhost:8000 on your ps4. (change localhost to your local ip.)

Notes

  • This proxies Discord REST API requests from the server using the token in config.json.
  • Using user tokens may violate Discord's Terms of Service. Prefer bot tokens and invite the bot to guilds if possible.

About

Web UI for Discord accessable via PS3/PS4.

Resources

Stars

Watchers

Forks