@RequestMapping(method = RequestMethod.POST, value="/xxxxx/validate", headers = "Accept=application/json")
@ApiImplicitParams({
@ApiImplicitParam(name = "X-YYY-TOKEN", value = "YYYToken", required = true, allowEmptyValue = false, paramType = "header"),
@ApiImplicitParam(name = "Content-Type", value = "application/json", required = true, allowEmptyValue = false, paramType = "header", example = "application/json")
}
)
Can you pls advice? This is critical to our poc work. I am getting 403 forbidden access. Where as if I try the post man client with the same headers it works.