Changelog

The First Badge

Related projects: FuscAuth

What shipped

  • Google OAuth proof of concept -- the first end-to-end login flow, from redirect to token
  • Refresh token logic -- access tokens expire, so users get a 30-day refresh token to avoid re-authenticating constantly
  • Token verification endpoint -- a Lambda authorizer that validates JWTs for all downstream APIs
  • Payload 2.0 -- restructured the JWT payload and simplified the verification response
  • Cleanup -- removed test logs that snuck into the first push (Nov 23)
  • This was the foundation. No frontend yet, no shared libraries, no fancy DX -- just a working OAuth flow that could issue and verify tokens. Every fuscripts app that exists today authenticates through logic that traces back to these four commits.

    The vision was simple: log in once, access everything. On November 10, that vision became real code.