Quick start
Point your app's OIDC settings at the discovery URL:
https://aspcode.net/default/.well-known/openid-configuration
Login URL (renders the mock login form — enter any email + fake password):
curl "https://aspcode.net/default/authorize?response_type=code&client_id=client&redirect_uri=https://aspcode.net/callback&scope=openid email"
Exchange the code for tokens:
curl -X POST "https://aspcode.net/default/token" -H "Content-Type: application/x-www-form-urlencoded" \ -d "grant_type=authorization_code" -d "client_id=client" -d "code=CODE"