Slack login demo

Token in #access_tokenlocalStorage. Login shape: res.success with data.user + data.token. GET /api/v1/auth/me: full user record in data.

Workflow
  1. OAuth return → save token from hash.
  2. GET /api/v1/auth/me with Authorization: Bearer ….

Login response (user + token)

status: "success" · data.user + data.token

(sign in with Slack, then this fills from /me + stored token)

GET /api/v1/auth/me response

status: "success" · full user in data (no token)

(call /me when signed in)
Checking session…

← API home