I have \"users\" resource defined as follows:
@Path(\"/api/users\") public class UserResource { @POST @Consumes(MediaType.APPLICATION_JSON) publ
Follow redirects means following 30x status code redirects. What you have there is a 201 response, that is not a redirect. You can write a ClientFilter that will follow the location header if 201 is returned.