Skip to content

Sign up Validation with Azure Function

Israel Teneda edited this page Feb 22, 2021 · 7 revisions

Continuing with the process of Authentication and authorization setup

We need to create an Azure Function with the purpose of restrict external users.

For this is necessary to go to Function App section, click on new and create an app function with the next values:

Publish: Code
Runtime stack: Node.js
Version: 12 LTS
Region: Central US
Operating System: Windows

Then inside the Function App, it's necessary to create a function in the section Funcions on the sidebar.

We need to select Add then in Development environment select Develop in portal, now select an HTTP trigger template, authorization level Function, name it and create the function.

Then inside the function go to Developer section on Code + Test and change the content of the function with the SignUpValidation function located on time-tracker-azure-functions repository and save it.

Clone this wiki locally