Table of Contents

Class AzureFunctionsAuthenticationHttpContextExtension

Namespace
Microsoft.Identity.Web
Assembly
Microsoft.Identity.Web.dll
public static class AzureFunctionsAuthenticationHttpContextExtension
Inheritance
AzureFunctionsAuthenticationHttpContextExtension
Inherited Members

Methods

AuthenticateAzureFunctionAsync(HttpContext)

Enables an Azure Function to act as/expose a protected web API, enabling bearer token authentication. Calling this method from your Azure function validates the token and exposes the identity of the user or app on behalf of which your function is called, in the HttpContext.User member, where your function can make use of it.

public static Task<(bool, IActionResult?)> AuthenticateAzureFunctionAsync(this HttpContext httpContext)

Parameters

httpContext HttpContext

The current HTTP Context, such as req.HttpContext.

Returns

Task<(bool, IActionResult)>

A task indicating success or failure. In case of failure UnauthorizedObjectResult.