-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb-ui-network.txt
More file actions
20 lines (18 loc) · 1.41 KB
/
Copy pathweb-ui-network.txt
File metadata and controls
20 lines (18 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# BadgerChat web client — live network trace (browser -> combined server on :53730)
# Captured by the headless preview while driving the real React build + API.
# Demonstrates the app loads chatrooms, restores the session (whoami), fetches
# paginated messages, registers a user, and posts a message — all over HTTP.
GET / -> 200 OK (index.html)
GET /assets/index-Wm29kAev.js -> 200 OK
GET /assets/index-C1InXNEl.css -> 200 OK
GET /api/f23/hw6/chatrooms -> 200 OK (ChatroomNav)
GET /api/f23/hw6/whoami -> 200 OK (AuthProvider restore)
GET /api/f23/hw6/messages?chatroom=Bascom%20Hill%20Chatters&page=1 -> 200 OK
POST /api/f23/hw6/register -> 200 OK (user bucky_badger)
POST /api/f23/hw6/messages?chatroom=Bascom%20Hill%20Chatters -> 200 OK (message id 12)
GET /chatroom/Bascom%20Hill%20Chatters -> 200 OK (SPA fallback -> index.html)
GET /api/f23/hw6/chatrooms -> 200 OK
GET /api/f23/hw6/messages?chatroom=Bascom%20Hill%20Chatters&page=1 -> 200 OK
GET /api/f23/hw6/whoami -> 200 OK (isLoggedIn: true, bucky_badger)
# Result: authenticated UI shows the New-post form + the user's own message
# "Go Badgers! 🦡" with a Delete control. All requests 200 OK.