CreateOAuthClientParams
import type { CreateOAuthClientParams } from "https://esm.sh/@supabase/supabase-js@2.89.0/dist/index.d.mts";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;
}