azure-functions-openapi-extension
azure-functions-openapi-extension copied to clipboard
This extension provides an Azure Functions app with Open API capability for better discoverability to consuming parties
**Describe the issue** When using Microsoft.Azure.WebJobs.Extensions.OpenApi setting the content type: application/x-www-form-urlencoded on a OpenApiRequestBody attribute, SwaggerUI is not rendering the ui properly. **To Reproduce** Steps to reproduce the behavior: 1....
**Describe the issue** `OpenApiTriggerFunction` endpoints such as `RenderSwaggerDocument`, `RenderOpenApiDocument`, etc. do not currently work with isolated model and [ASP.NET Core integration](https://learn.microsoft.com/en-us/azure/azure-functions/dotnet-isolated-process-guide#aspnet-core-integration). I think that the library should include another set...
**Describe the issue** Hi all I have an Azure Function v2 with OpenAPI extension added on it. I have defined a class to return responses, this class has a property...
**Describe the issue** In the [OpenApiParameter], even if we pass required="true", it doesn't seems to be working. sample:- `[OpenApiParameter(RequestHeaders.corelationID, In = ParameterLocation.Header, Required = true)]` **To Reproduce** Steps to reproduce...
Maybe someone in this community can help me here. I have the OpenAPI hosted on a Azure Function which is protected by the OAuth2 flow via the AAD identity provider....
I have defined a Transport enum as below, i want the Open API Specification to show the enum values as string instead of numeric. ``` [JsonConverter(typeof(JsonStringEnumConverter))] public enum BusinessFunction {...
I'm a bit puzzled as why to use this package (`Microsoft.Azure.Functions.Worker.Extensions.OpenApi`) when I still also need the `Microsoft.Azure.WebJobs.Extensions.OpenApi` package. Most likely I'm missing the point ;) I'm using it in...
**Describe the issue** This issue possibly further clarifies what is happening in #596 and #594. The whole Swagger document does not render and `/api/swagger/ui` will not return a page. **To...
**Describe the issue** When following the [getting starting guide for the out of process model](https://github.com/Azure/azure-functions-openapi-extension/blob/main/docs/enable-open-api-endpoints-out-of-proc.md) the app will compile but rendering the swagger UI fails with no errors. **To Reproduce**...
**Describe the issue** So I can see that Get-OpenApiDocument.ps1 works fine locally - but in trying to execute the powershell from azdo pipeline (yml) GITHUB_WORKSPACE seems irrelevant - I assume...