Julian Gums
Julian Gums
So this is coming in 4.0?
@danharrin updated this with a repo and instructions.
Basically if I extend the `Panel` and override this method from `HasAuth` ```php public function getLoginUrl(array $parameters = []): ?string { if (! $this->hasLogin()) { return null; } return $this->route('auth.login',...
Thanks for your explaination/help @27pchrisl. It seems like it's sending a stateful request to the IDP (Microsoft Entra) but thinks it is receiving a stateless response back although there is...
@27pchrisl ok as for the state that can't be decrypted it is because it's not used for the RelayState but rather a random string you're generating here https://github.com/SocialiteProviders/Providers/blob/master/src/Saml2/Provider.php#L206 I think...
@27pchrisl after using the workaround that is also implemented in the package soon, it works if I use `->stateless()` now. But like you explained, it is actually an SP-initiated flow,...
@27pchrisl `RelayState` isn't modified, but it still creates a new session on return. The `state` session value is actually added by the SAML2 provider here: https://github.com/SocialiteProviders/Providers/blob/master/src/Saml2/Provider.php#L206 It is set to...
Still an issue
Created a PR for it https://github.com/jeffgreco13/filament-breezy/pull/373
@jeffgreco13 closing this as you've merged the PR