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