GithubHelp home page GithubHelp logo

Comments (2)

ch4mpy avatar ch4mpy commented on May 29, 2024

Your web browser is not a REST client. Use something like Postman to retrieve an access-token from Keycloak and build requests with Authorization header.

If you open your browser console, you should see that what you got is a 401 (Unauthorized which means that authorization is missing or invalid) and not a 302 (redirect to login). This is intended.

Building an auth2 client running in web browser is out of the scope of this tutorial which is focused on resource-server only. You can find a working sample of client with Angular here.

I'm surprised you get an exception: the browser you use probably chose to process that 401 error by displaying a login form and then retrying the request with Basic authentication header which should result in an other 401 (resource server expects a JWT issued by the configured authorization-server as Bearer Authorization, not a basic Authorization).

Would you share your complete modified project source on a drive or something (my email is ch4mp[at]c4-soft.com)?

from spring-addons.

ch4mpy avatar ch4mpy commented on May 29, 2024

Thank you for sharing your project. I think it behaves as expected. Please see the Prerequisites section I just added to clarify what is required and how resource-servers behave.

You have a stack-trace because you set spring log-level to TRACE. The error you see is because Authorization header is missing, resulting in authentication failure.

I believe this error is further intercepted and a 401 is returned (you should be able to see return code value in your client console).

Regarding actuator, you need to enable it:

management.endpoint.health.probes.enabled=true
management.health.readinessstate.enabled=true
management.health.livenessstate.enabled=true
management.endpoints.web.exposure.include=*

I will add this to tutorial properties.

from spring-addons.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.