Identity tooling

Protocol Explorer

Friendly view for OIDC/OAuth2 endpoints with live GET preview where applicable.

Back to Console

Well-known discovery

https://auth.logiseat.com/.well-known/openid-configuration
Click "Run GET" to preview JSON response.

JWKS

https://auth.logiseat.com/.well-known/jwks
Click "Run GET" to preview keys payload.

Authorize endpoint

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>

Token endpoint

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>

Revocation endpoint

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>