Hello, so ok, I somewhat get it - with the new spring security missing the password grant type it got a lot more complicated
So if I want to implement a e.g. react client, I would have to call the oauth2/authorize endpoint, be forwarded to a Jmix login page and then transform the response and call the oauth2/token endpoint where I get a token that I can use to authenticate my REST calls with, right?
If this is correct, my question is: shouldn’t that be easier? I mean, I actually want my login page to be in the client app of course. So I would have a request where I provide username + password - as it used to be before. And then ideally some endpoint would return me the access token - as it used to be before.
Why did this change so much? Can we implement an endpoint that will have a similar easy handling as before?