Open ddduarte opened 5 years ago
Hi, I am getting an error when post file in my aplication.
{ "timestamp": "2019-03-12T19:20:39.108+0000", "status": 415, "error": "Unsupported Media Type", "message": "Content type 'multipart/form-data;boundary=----WebKitFormBoundary3990uxUh72AZ1dJx;charset=UTF-8' not supported", "path": "/upload" }
My API
@PostMapping( consumes = MediaType.MULTIPART_FORM_DATA_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.CREATED) public Flux<String> post(@RequestBody Flux<Part> parts) {
Any idea what can cause this error?
I am using a tool to test, I suppose that tool is OK.
huh sorry I didn't run into that... that being said, I didn't look at this repo in a while. what's the tool you're using?
Hi, I am getting an error when post file in my aplication.
My API
Any idea what can cause this error?
I am using a tool to test, I suppose that tool is OK.