AzureFunctions.Extensions.OpenIDConnect
AzureFunctions.Extensions.OpenIDConnect copied to clipboard
OIDC / JWT Bearer Tokens authentication made easy for Azure Functions. Work with the well known ASPNET Authorize attribute. Compatible with popular identity providers including Auth0, Azure AD B2C, Az...
Simple project and nuget package updates to target net8
In this modified snippet from the Isolated-Net6 sample, adding any policy will cause authorization to always fail. ``` services.AddOpenIDConnect(config => { var audience = Environment.GetEnvironmentVariable("OpenIdConnect_Audience"); var issuer = Environment.GetEnvironmentVariable("OpenIdConnect_Issuer"); var...
This is a small change to make the `FunctionContext` available to the authorization service and, consequently, to the authorization handlers.
I would like to make the executing function context be the resource passed to the authorization service and, therefore, to the handlers. I tried to create a pull request for...
Would someone be able provide an example or article on how to make this work with Swagger UI or OpenAPI in isolated Azure Functions? I am only able to get...
I'm developing a solution that uses Azure Functions in isolated mode, the project targets .NET7. I'm also using `System.Text.Json` for serialization inside it. I set up an HTTP function with...
When I try to run the sample "InProcess-Net6" project using launch settings "Attach to .NET Functions", I get the host error: **Microsoft.AspNetCore.Authorization: No policy found: AuthLevelAdmin** ```bash [2022-11-15T22:11:43.696Z] Executing HTTP...
Actually azure-function-worker is going to implement [Authentication\Authorization support ](https://github.com/Azure/azure-functions-dotnet-worker/issues/856) in some days. But it could be useful to support multi scheme auth for OpenIdConnect. Thank you in advance :)
We've just started using this library in a project and I've found a security concern that I'd like to raise with you. How would you like me to provide further...