Skip to content
Advertisement

Bad Request 400 when trying to get all users. Dto and form

I have REST api with User model – DTO and Create / update form. My userService checks if user is administrator, then allow to getAllUsers in List. When I want to get all users, I get Bad request 400, but it should return Forbidden. It used to work but when I added some changes to my code I got bad request. I don’t know what I’m missing…

My User.java

JavaScript

UserController

JavaScript

UserService

JavaScript

UserDto

JavaScript

Advertisement

Answer

I think you missed uuid parameter in request header. It will be like this. http://localhost:8080/users?uuid="enter_your_uuid_here"

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement