Unchase.OpenAPI.Connectedservice icon indicating copy to clipboard operation
Unchase.OpenAPI.Connectedservice copied to clipboard

:scroll: Visual Studio extension to generate OpenAPI (Swagger) web service reference.

Results 14 Unchase.OpenAPI.Connectedservice issues
Sort by recently updated
recently updated
newest added

Client Class has to be regenerated providing all the inputs if any changes at the API Side

Suppose an API call returns an erroneous status with an object for its body (say, ProblemDetails or something similar), the generated code fetches the reponse object via a call to...

### CURRENT BEHAVIOUR 1. I configured the Unchase.OpenAPI.Connectedservice and files was generated properly 2. In order to change the configuration, I press the Configured link or on the title of...

[swagger.zip](https://github.com/unchase/Unchase.OpenAPI.Connectedservice/files/9090473/swagger.zip) ``` if (status_ == 201) { var objectResponse_ = await ReadObjectResponseAsync(response_, headers_, cancellationToken).ConfigureAwait(false); if (objectResponse_.Object == null) { throw new ApiException("Response was null which was not expected.", status_, objectResponse_.Text,...

Right now, some of the objects from the response body are set with the value DisallowNull, however, they can be null, I think this happens because all optional values are...

bug

With no specification the request sends the body as FormUrlEncodedContent then adds the header value for application/json the call does not work since the content is wrong, changing to JsonContent.Create(dictionary_)...

Hello everyone. This is a question or a feature requests, it depend on how it is possible to solve the problem that i will expose now. When a swagger.json file...

### Describe the bug the generated code at line 1493 var dictionary_ = in attached file fails with error below var json_ = Newtonsoft.Json.JsonConvert.SerializeObject(parameterValues, _settings.Value); var dictionary_ = Newtonsoft.Json.JsonConvert.DeserializeObject(json_, _settings.Value);...

bug

Trying to create a service for Canada customs described here. https://ccp-pcc.cbsa-asfc.cloud-nuage.canada.ca/en/carm-api/tariff-codes I click a create a new connected service for my .NET Framework 4.8 project (also test fresh .NET 6...

I'm working with a vendor's swagger in which someone thought it would be great to create parameters representing object hierarchy using semicolons. In short think query string parameters names customer:firstname,...