SoftRare
SoftRare
Hi! I am actually a little confused what this accomplishes. We have multiple systems - all running on Symfony 4, all running on different TLDs - one of which being...
I want to get the AccessToken after the user authenticated. $token = $tokenStorage->getToken(); if($token instanceof OAuthToken) { /** @var AccessToken $accessToken */ $accessToken = $accessTokenManager->findTokenByToken( $token->getToken() ); } Unfortunately the...
I have a project taken over from someone who tries it with a custom compiler pass: public function process(ContainerBuilder $container) { $definition = $container->getDefinition('security.authentication.provider.custom'); $definition->setClass(CustomAuthenticationProvider::class); } but it doesn't work,...
Hi! I have a web application referring a user to a separate identity provider application to log in through username/password which sends back an access token and the user gets...