Skip to main content

List all client secrets (censored) of auth client

GET 

/login/client/:id/clientSecret

Retrieves all existing client secrets of the specified auth client.

The returned secrets only contain the 5 letter prefix (censored client secret text) and the fingerprint for identification (for deleting secrets). The original secret text is NOT returned. It can only be retrieved once while creating the secret.

Request

Path Parameters

    id uuidrequired

    The uuid string of an existing auth client

Responses

All client secrets of the auth client (censored)

Schema
  • Array [
  • censored stringrequired

    The 5 letter prefix of the original client secret text plus stars for identification of the secret by the user

    fingerprint stringrequired

    The fingerprint of the hash of the client secret. Used as identifier to delete the secret.

  • ]
Loading...