So far, we have created an Azure Function app that could host multiple Azure Functions; let's look at creating an Azure Function with an HTTP trigger.
- Select the Function App that you just created.
- Under Functions within the Function App, click on the + button or select New function.
- You will then be provided with options to create different types of Azure Function (HTTP trigger, Timer Trigger, and others).
- Let's select HTTP trigger from the list of templates that are provided to you.
- In the New Function dialog box, set the language as JavaScript.
- Enter a Name for the Functio
- Select Authorization level as Anonymous for now for ease of testing. However, I don't recommend this setting for your ...