OAuth2 Authorization Request

OAuth 2.0 authorization request parameters with response type, client ID, and scope.

Report an issue
auth

Install

$ npx shadcn@latest add @open-types/oauth2-authorization-request

Source

export interface OAuth2AuthorizationRequest {
  response_type: string;
  client_id: string;
  redirect_uri?: string;
  scope?: string;
  state?: string;
}
export interface OAuth2AuthorizationRequest {
  response_type: string;
  client_id: string;
  redirect_uri?: string;
  scope?: string;
  state?: string;
}