DEV Community

Hyacienth Ugochukwu
Hyacienth Ugochukwu

Posted on

Create a Function app with a Webhook to provide a Hello message with your name

Step 1: Go to your search bar on your Azure Portal and search for function app

Image description

Step 2: Click on function app and click on create.

Image description

Step 3: Add your resource group and give your function app a name and for your runtime stack, use .NET. Leave the rest as default and click on review+create, the deploy.

Image description

Step 3: After the deployment has been successful, go to the resource and create a new function.

Image description

Step 4: Select the http trigger and create the function.

Image description

Step 6: After the function must have been created, click on code + test then scroll through the code to give you a clue as to what you are going to be doing. Here, line 20 tells us what to do.

Image description

Step 7: Go to the get function url and copy the link. Paste the link in your browser and add "&name=yourname" to the ending of the link.

Image description

Top comments (0)