Introduction
The CoreOne Authentication Service offers various endpoints according to the OIDC specification. Each of the endpoints is briefly described here.
Discovery Endpoint
The discovery endpoint can be used by applications to retrieve the metadata about the CoreOne Authentication Service. It contains information about all the other endpoints, the configured claims, scopes and so on.
https://idp.coreone.ch/.well-known/openid-configuration
Authorization Endpoint
The authorization endpoint can be used to request tokens.
https://idp.coreone.ch/connect/authorize
User Info Endpoint
The user info endpoint can be used to retrieve information about the user. In order to retrieve data from this endpoint, the caller needs to provide a valid access token.
https://idp.coreone.ch/connect/userinfo
Device Authorization Endpoint
The device authorization endpoint can be used to request device and user codes, typically used by device flow authorization process.
https://idp.coreone.ch/connect/deviceauthorization
Introspection Endpoint
The introspection endpoint can be used to validate reference tokens.
POST https://idp.coreone.ch/connect/introspect Authorization: Basic base64({api_resource_name}:{api_resource_secret}) Content-Type: application/x-www-form-urlencoded token={access_token}&token_type_hint='access_token'
Revocation Endpoint
The revocation endpoint allows the revocation of access and refresh tokens.
https://idp.coreone.ch/connect/revocation
End Session Endpoint
The end session endpoint can be used to trigger a single sign-out process.
https://idp.coreone.ch/connect/endsession