Python: Update OAuth client

Updates an existing OAuth client.

Parameters

Examples

Update 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"]
    }
)