Updates an existing OAuth client.
service_role key.The ID of the OAuth client to update.
Parameters for updating the OAuth client.
response = supabase.auth.admin.oauth.update_client(
"client-id",
{
"name": "Updated OAuth Client",
"redirect_uris": ["https://example.com/callback", "https://example.com/callback2"]
}
)