Identity tooling
Friendly view for OIDC/OAuth2 endpoints with live GET preview where applicable.
https://auth.logiseat.com/.well-known/openid-configuration
Click "Run GET" to preview JSON response.
https://auth.logiseat.com/.well-known/jwks
Click "Run GET" to preview keys payload.
https://auth.logiseat.com/connect/authorize
Interactive redirect endpoint. Use with a client_id and redirect_uri.
GET https://auth.logiseat.com/connect/authorize?client_id=<client_id>&response_type=code&scope=openid profile&redirect_uri=<url>
https://auth.logiseat.com/connect/token
POST endpoint for code exchange, client credentials and refresh token flows.
POST https://auth.logiseat.com/connect/token Content-Type: application/x-www-form-urlencoded grant_type=client_credentials&client_id=<id>&client_secret=<secret>&scope=<scope>
https://auth.logiseat.com/connect/revocation
Use for token revocation in logout/device compromise scenarios.
POST https://auth.logiseat.com/connect/revocation Content-Type: application/x-www-form-urlencoded token=<token>&client_id=<id>&client_secret=<secret>