coollabsio/coolify · error · Exception

OAuth provider not found.

Error message

OAuth provider not found.

What it means

Error "OAuth provider not found." thrown in coollabsio/coolify.

Source

Thrown at app/Livewire/SettingsOauth.php:150

    }

    public function instantSave(string $provider)
    {
        try {
            $this->authorize('update', instanceSettings());
            $this->updateOauthSettings($provider);
        } catch (\Exception $e) {
            return handleError($e, $this);
        }
    }

    public function toggleProvider(string $provider): mixed
    {
        try {
            $this->authorize('update', instanceSettings());

            if (! array_key_exists($provider, $this->oauth_settings_map)) {
                throw new \Exception('OAuth provider not found.');
            }

            $enabling = ! $this->oauth_settings_map[$provider]['enabled'];
            if ($enabling) {
                $this->validate($this->providerRules($provider));
            }

            $this->oauth_settings_map[$provider]['enabled'] = $enabling;
            $this->updateOauthSettings($provider);
        } catch (\Throwable $e) {
            return handleError($e, $this);
        }

        return null;
    }

    private function providerRules(string $provider): array
    {

View on GitHub (pinned to 70b9acc424)

When it happens

Trigger: Thrown at app/Livewire/SettingsOauth.php:150 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of coollabsio/coolify@70b9acc424 (2026-08-17). Data as JSON: /api/errors/a3fe9883d7181bcf. Report an issue: GitHub.