Hi. i’m using auth0 with spring boot security. i did all steps that are mentioned in this page : Auth0 Java Spring Boot SDK Quickstarts: Login
i was able to authenticate the user and create a new session. i’m trying to do API requests from Postman to my server (localhost) and i’m getting the login page as response, when i remove .anyRequest().authenticated() from the code i’m able to make the request.
how can i make the request from postman without disabling the authentication? i also tried to add the authorization cookie to the request and still no luck and it seems like it’s can only be done from the browser. we will also want to API docs on our system and allow users to make requests outside the browser with token as header/cookie.
is this possible? do we need to add another implementation for sending the token as header?