Implementing Authentication in Azure Static Web Apps - Part 1
January 10, 2023 by Anuraj
Azure Security Static Web Apps
This post is about implementing authentication in Azure Static Web Apps. Azure Static Web Apps is a service that automatically builds and deploys full stack web apps to Azure from a code repository. Similar to Azure App Service, Azure Static Web App offers authentication out of the box. The service offers five authentication providers - Azure AD, Twitter, GitHub, Google, and Facebook, out of the five, two of them, Google and Facebook are in preview mode. In this post we will explore the Static web app running on Free Plan. For Standard plan we need to configure the social provider client Id, client secret and callback URIs. For Free plan there is no configuration required.
The workflow is simple, you need to redirect the user to an endpoint - like /.auth/login/<provider>
which will prompt for the particular provider login screen, once user logged in, redirected back to the page and then you can access the profile information from /.auth/me
endpoint. If the user is authenticated, this endpoint will not return JSON information about the user.
Here is the very basic login implementation. This is an index.html
page where I am displaying login buttons for all the five providers and clicking the button will prompt for the login. And once logged in it will display user name.
To test the workflow, we can create the file and execute the swa start
command on the folder location where you created the file. If you’re not installed the Azure Static Web App CLI, you find the more details and installation instructions here - https://azure.github.io/static-web-apps-cli/. Once it started running, you can browse the http://localhost:4280/ page and explore the options.
Next we will deploy the app to Azure. To do this, I created a github repository with the index.html file. Then I am creating an Azure Static Web App resource with the GitHub repository. Here is the screenshot of the same, I highlighted the fields I modified.
After some time, you will be able to browse the app and you will be able to do authentication with all the providers. From the /.auth/me
endpoint you will receive JSON response like this.
We can store the UserId if we like to store the data associated to the user. And in the API - Azure Functions - we can verify it with following extension method. The function is created using C# and .NET 7 isolated.
Work with Azure Functions, we need to modify the swa start
command like this - swa start . --api-devserver-url http://localhost:7071
- I am using the --api-devserver-url
parameter, so that I can debug the Azure Function. We need to modify the github workflow file as well. Commit the changes, this will trigger the build the deploy the Azure Function. And when we try to access the /api/messages
and in the code we can verify the authentication like this.
In the next blog post we will explore the authentication in Static Web App - Standard Plan. Static Web App authentication is free plan is easy to configure and use it. Please note the user Id in the response will change if Free Plan to Standard Plan.
Happy Programming.
Copyright © 2024 Anuraj. Blog content licensed under the Creative Commons CC BY 2.5 | Unless otherwise stated or granted, code samples licensed under the MIT license. This is a personal blog. The opinions expressed here represent my own and not those of my employer. Powered by Jekyll. Hosted with ❤ by GitHub