Stateless OAuth2 authentication with Google, issuing RS256-signed JWTs
This is a centralized authentication service that handles login with Google and issues secure JSON Web Tokens (JWTs). Applications validate tokens locally using public keys, without needing database access.
Key features:
GET /login - Start authentication flowGET /logout - Clear auth cookieGET /userinfo - Get current user infoPOST /refresh - Refresh tokenGET /.well-known/jwks.json - Public keys for JWT validationLearn how to integrate this auth service into your applications.