Impressive, excellent presentation, just what I was needing to clarify my doubts. Thank you very much.
@robozbeci Жыл бұрын
Where can I find git of the sample? Thank you!
@FranciscoMoura-paco2 жыл бұрын
Hi Thomas! At 51:54, you said that you not recommend use keycloak docker images. Is it true nowaday? Wich problems with the docker images of keycloak?
@processor2154 жыл бұрын
Hello, I have implemented role based authentication for my micro services . The rest end points works very well from postman and similar apps. But it fails when invoked from vue spa application. Error is CORS, no authorization headers present. I tried to * / + in key cloak config but still it fails. When my team used proxy to send request , it works but as proxy dont work in prod build of vue apps we are getting CORS error . Could you please suggest how to solve this
@achyuthkodali31944 жыл бұрын
Use cors filters, browsers send preflight requests to the server before sending actual request.. So your server need to accept OPTIONS method, search for cors filters in spring boot, you will find solutions