Skip to main content

ClientRegistrationResponse

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

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?TwistScope[]-

See

RFC 7591 Section 3.2.1