How to implement universal logout?

We have clients that use Spotfire on their machines (separate credentials from Auth0) and what happens when they login to Auth0 is that they get signed in to Spotfire via Auth0 credentials. But when they Sign Out from Auth0, they’re not signed out from Spotfire license/credentials – is there a way to ensure they get signed out from Spotfire/Auth0?

  • “auth0/login”: “^5.0”
  • Laravel Framework

public function logout()
{
Auth::logout();

    $logoutUrl = sprintf(
        'https://%s/v2/logout?federated&client_id=%s&returnTo=%s',
        config('laravel-auth0.domain'),
        config('laravel-auth0.client_id'),
        config('app.url')
    );

    return Redirect::intended($logoutUrl);

    return redirect()->route('home');
}

**
https://github.com/auth0-samples/auth0-laravel-php-web-app/tree/master/01-Login

Hey there!

I think the most effective way of figuring that out would be to reach out directly to repo maintainers via GitHub issue so they can suggest you the best path forward. Once you create it you can share the link to it here so we can ping them. Thank you!

@konrad.sopala

1 Like

Perfect! Thanks for doing that! Let me ping repo maintainers about it in a minute!