Christian Bartolo Burlò
Christian Bartolo Burlò
Fixed multiple bugs present in the scala-sttp generator: 1. The generated requests were using `Nothing` instead of `Any` as the capability parameter (as mentioned also [here](https://github.com/softwaremill/sttp/issues/1358)). *Fixed* by changing ([api.mustache](https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator/src/main/resources/scala-sttp/api.mustache))...
When following the sequence of requests found in the following [shell script](https://github.com/spring-petclinic/spring-petclinic-rest/files/8425235/invalid_msg_7.sh.zip), the wrong PetType ID is returned upon creation. Basically, the error occurs when one creates a pet type,...
According to the open API spec, there is the following endpoint to create a pet: `http://localhost:9966/petclinic/api/pets`, however I am getting a `501` error whenever I send a POST request to...
I keep getting an exception whenever the response is other than 200. The requests are being sent as follows: ```scala def addProduct(productName: String): ApiRequestT[Unit] = basicRequest .method(Method.POST, uri"$baseUrl/products/${productName}") .contentType("application/json") .response(asJson[Unit])...
## Your Question When running `java -jar target/cwa-verification-server-1.5.0-SNAPSHOT.jar` (as in the documentation) I get the following error: `no main manifest attribute, in target/cwa-verification-server-1.5.0-SNAPSHOT.jar`. Am I doing something wrong?
## Description The swagger specification describes the endpoint `/images/oembed/` as retrieving "embedded content from a specified image URL" whereas in reality it takes image UUID not the url. ## Reproduction...
This happens for both v1 and v2: When sending a request for a country via a non-existent alpha code we get `[null]`, rather than just the empty list `[]`. ```...
According to the schema one should get a body of type Deleteresponse in the swagger specification. However, it returns another type of body. ``` curl \ --request POST \ --url...
When creating a new user and attempting to retrieve it using the following curl commands, I get a 404 error indicating that it cannot be found. ``` curl -v\ --request...
When invoked in the following manner, the endpoint returns a 500 server error: ``` curl \ --request POST \ --url 'http://localhost:8080/v3/store/order' \ --header 'Content-Type: application/json' \ --data '{"id":456,"petId":456,"quantity":2}' \ --location...