CreateOAuthClientParams
Parameters for creating a new OAuth client. Only relevant when the OAuth 2.1 server is enabled in Supabase Auth.
type CreateOAuthClientParams = {
client_name: string;
client_uri?: string;
redirect_uris: string[];
grant_types?: OAuthClientGrantType[];
response_types?: OAuthClientResponseType[];
scope?: string;
};§Type
§
{
[src]client_name: string;
client_uri?: string;
redirect_uris: string[];
grant_types?: OAuthClientGrantType[];
response_types?: OAuthClientResponseType[];
scope?: string;
}