Skip to main content

ClientRegistrationResponse

type ClientRegistrationResponse = Omit<RawClientRegistrationResponse, "clientIdIssuedAt" | "clientSecretExpiresAt" | "scope"> & {
clientIdIssuedAt?: Date;
clientSecretExpiresAt?: Date | null;
scope?: Permission[];
};

Response from a successful dynamic client registration.

Type Declaration

NameTypeDescription
clientIdIssuedAt?Date-
clientSecretExpiresAt?Date | nullnull indicates the client secret never expires. Absent when no secret is issued.
scope?Permission[]-

See

RFC 7591 Section 3.2.1