Daniel Matos
Daniel Matos
The HTTP request looks like this: ``` POST /brand/image/1 HTTP/1.1 Host: localhost:8080 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:103.0) Gecko/20100101 Firefox/103.0 Accept: application/json Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate, br Referer: http://localhost:8080/q/swagger-ui/...
The `file` parameter is the one on `ImageUploadDto`, it should not appear in swagger at all. It doesn't have a `filename` because it is showing as a parameter and it...
But sending through curl yields the same error, I tried sending a local file with curl and also got null in both parameters
Yes, but that is generated in Swagger, the problem is that the file contents do not get to the backend
Any news on this issue?
Are there any alternatives I can use to upload images then?
Is there an estimated date for when the refactoring will be done?
The example in the updated docs is generating the following on Swagger: 
With this example, OpenAPI is able to generate an upload button and the content of the file can be read inside my application ```Kotlin @POST @Path("/upload") @Consumes(MediaType.MULTIPART_FORM_DATA) fun upload(@PartType(MediaType.APPLICATION_OCTET_STREAM) @Schema(type...
Is there any example on how can we do this? I have a setup similar to @Alwaysgone where TLS key/certificate only live for a small amount of time and I...