Custom authentication in a Symfony 3 using external REST API
问题 I would like to write a basic login form, which authenticates users by sending a request to an external REST API. The external API receives the login/password and return 200 (ok) if the credentials are correct. However, I can't implement it via the UserProviderInterface, because the external REST API give me the password in the reply. (I can't fill the user password in the loadUserByUsername method). I found a valid solution here, but it uses classes that have been removed in Symfony 3 :