I have a Web App (VueJS + ASP .NET Core backend) hosted on Azure App Service and I use Azure AD B2C for authentication. I also have a Functions App that I want to call from the client code but I’m not sure what’s the best way to flow the auth to the Functions.
- I can register the Functions App in B2C and set Easy Auth but how do I flow the already authenticated user from the client to the Function?
- I can create a custom JWT token and be done with it but is it possible to flow a B2C token to the Function? If so, how do I validate the token?
on behalf of
: docs.microsoft.com/en-us/azure/active-directory/develop/…. Problem with client app is that token is stored in browser so not secure. – Thomas