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
Feature Request: SwaggerUI Auth Options
**Describe the issue** [SwashBuckle.ASpDotnetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore#enable-oauth20-flows) Provides built-in UI support for for OAuth 2.0 flows that help developers quickly stand up Swagger UIs with data pre-filled in, such as OAuth ClientIds, etc....
**Describe the issue** I'm getting an exception trying to render the Swagger Document when my API includes a class that has a Nullable in it. **To Reproduce** Steps to reproduce...
Question: OpenApiOAuthFlows configuration options
I am in the process of trying to configure an `OpenApiOAuthFlows` (for oauth clientcredentials) and was hoping to be able to access configuration (or maybe even other services), but it...
Error with loading file Microsoft.Azure.WebJobs.Extensions.Http.dll
I'm using 0.7.2-preview version and I get this error when I go to URL `/swagger/ui`  The assemble is available in _bin/Debug/netcore3.1/_ directory but not in _bin/Debug/netcore3.1/bin/_. I tried manually...
OpenApiRequestBodyAttribute Example parameter is ignored
The example object used for the Example parameter in OpenApiRequestBodyAttribute appears ignored. I've added the OpenApiRequestBodyAttribute to an HTTP trigger function as below: `[OpenApiRequestBody("application/json", typeof(Trip), Required = true, Example =...
An optional string parameter is not passed correctly by swagger ui
An Azure function (V3) is declared with an optional string parameter. it is sent incorrectly to the function from the swagger UI regardless if the parameter is specified or left...
Auto-generate swagger.json
Would you please provide the sample of how to auto-generate `swagger.json` **during build** to use it for clients/dtos bindings generation for different languages later. I see `Microsoft.Azure.WebJobs.Extensions.OpenApi.CLI` project that looks...
Build method gives Object Reference exception when called with Assembly.GetExecutingAssembly()
Hi, I have written unit tests to check if the Open API document is getting generated successfully or not. The method is as below: async Task CoreAsync() { var helper...
feature request OpenApiExample for interface
It would be great if I could define example for an interface. Unfortunately the OpenApExampleAttribe can be used only with a class. Can you add the AttributeTargets.Interface to the attribute...
Feature Request: Add Metadata to All/Multiple Functions At Once
I currently have to add an OpenApiSecurity attribute to every function, even though they are all the same. I would like to be able to add metadata to functions using...