IsolatedFunctionsAuthentication
IsolatedFunctionsAuthentication copied to clipboard
Sample .NET 6 Azure Function with AAD authentication and authorization through middleware
Hi, this not really an issue per se. But I had a look at this while trying to use JWT bearer authorization independently of the azure platform. It was nice...
I used your implementation, but was able to eliminate the reflection in the SetHttpResponseStatusCode method. lmk what you think
First, thank you so much for putting this example out there. Very helpful. You may already be aware but with a new update of the SDK reflection isn't necessary anymore...
Hello! Great piece of code for authentication and authorization. Just wondering, could you use the nuget package Microsoft.Identity.Web in stead of this custom code to achieve the same thing? Or...