A minimal HTTP server for handling OAuth callback redirects locally.
git clone https://github.com/aspeckt-112/simple-local-oauth-callback-server.git
cd simple-local-oauth-callback-server
python3 callback_server.py
The server will listen on http://localhost:8080.
When an OAuth provider redirects to http://localhost:8080/?code=...
, the server will print the received code to the console.
You can use this server alongside tools like Bruno to quickly develop and test APIs that require OAuth authentication.
- Python 3.x