Marcin Burak
Marcin Burak
I've been working with .NET Azure Functions for some time and as far as I'm aware there is currently no way to run [Azure App Service Plan Authentication (EasyAuth)](https://docs.microsoft.com/en-us/azure/app-service/overview-authentication-authorization) while...
Library seems quite nice and should work, just a word of caution: the library uses `FunctionInvocationFilterAttribute` to invoke the authentication and authorization process of the incoming HTTP request. This attribute...
Keep in mind that the library you linked only authenticates and authorizes the HTTP requests but if your Azure Functions need to call some other web API like [Microsoft Graph](https://docs.microsoft.com/en-us/graph/overview)...
I personally develop a lot of small APIs surrounding Microsoft Graph and Power Platform and I'm really grateful that this OpenAPI extension exists. Now I can create my serverless API,...
Your issue comes from Azure Functions limitations and not from Open API document generation that is provided by this repository and NuGet package. Most developers who start working with Azure...
Which model of Azure Functions are you using: in-process or out-of-process? Which .NET version are you using? Could you please provide some code snippets showing the class and property you've...