sridhar1982
sridhar1982
I am following the hands-on-lab tutorial from [this tutorial link](http://htmlpreview.github.io/?https://github.com/javaee-samples/javaee7-hol/blob/master/docs/javaee7-hol.html) I followed the instructions as provided there to set up my `WildFly Application server`. Everything seems to work fine. The...
This is again a question: In this excellent material, @royclarkson has shown how to use `/aouth/token` to get the access token ``` curl -X POST -vu clientapp:123456 http://localhost:8080/oauth/token -H "Accept:...
This is more of a question. I do not want the password of user available in controller. After making the following change to the controller, I see the password of...
when I access `http://localhost:8080/profile/details/yellowfrog347` passing the JWT token generated, before the request reaches the controller, the JwtAuthenticationProvider authenticates the token. If validation failed, it will throw an error. If successful,...
Q1: when I access `http://localhost:8005/authorized-results`, I am redirected to `http://localhost:8005/login` and a login page shows up. I entered `roy` and `spring` but I get `bad credentials`. why is it so?...
how to restrict access to methods based on scopes? For example, in the below curl, we get access token that has only scope of "read". That is, user has authorized...