Cloud Computing

Serverless tutorial – Invoke Azure functions using HTTP Trigger

Serverless services or FaaS like Azure Functions lets you run code without provisioning or managing servers. You pay only for the compute time you consume there is no charge when your code is not running. You can run code for virtually any type of application or backend service all with zero administration. Just upload your code and FaaS provider would take care of everything required to run and scale your code with high availability. You can set up your code to automatically trigger other services or call it directly from any web or mobile app.

You can read more about FaaS or Serverless here.

Step #1.Create Function App

A function app lets you group functions as a logic unit for easier management, deployment, and sharing of resources.

Once you login to Azure Portal,Click the New button on the upper left-hand corner of the Azure portal, then select Compute > Function App.

Image – Microsoft Azure Portal – Click Function App

On the Function app,choose App name,Resource group appropriately

Image – Function App Settings

The hosting plan defines how resources are allocated to your function app. Default is Consumption Plan, resources are added dynamically as required by your functions.

Click on ‘Create’ to create a new function app.

Step #2.Create HTTP trigger function

So now we have a function app, the next step is to create a new function that gets triggered by the HTTP request.

Image – Function app

On the left-hand side, under the new Functions app, Click on ‘+’ to create new function.

Image – New Function

Choose Webhook + API scenario since we are going to create a function based on the HTTP trigger. Appropriate language can be chosen, I’m going ahead with default language CSharp.In the next step, we can write a sample code to print Hello <user>

Step #3.Test HTTP trigger function

Now that a new function is created, we can test it by issuing HTTP request.

Below is the console where you can modify the code if needed since this is an example, I’m going to the next step. Below code parses query parameter & sets it to a variable then printed.

Image – Code for new Function

There is an option to test the code inside the console itself.

Image – Test Function

Copy the function URL.

Image – Get Function URL

To the function URL append query parameter &name=<name> and make request to the function.

Image – Test the function from browser

Congrats! you have now created a function app that can be triggered by the HTTP request. In the next article, we can check on how to store the requested data on Azure Cosmos DB.

Like this post? Don’t forget to share it!

Additional Resources :

Summary
Article Name
Invoke Azure functions using HTTP Trigger
Description
This article explains how to set up your code to automatically trigger from other services or call it directly from any web or mobile app.
Author
Publisher Name
Upnxtblog
Publisher Logo
Karthik

Allo! My name is Karthik,experienced IT professional.Upnxtblog covers key technology trends that impacts technology industry.This includes Cloud computing,Blockchain,Machine learning & AI,Best mobile apps, Best tools/open source libs etc.,I hope you would love it and you can be sure that each post is fantastic and will be worth your time.

Share
Published by
Karthik

Recent Posts

Innovators in Crypto: Prominent AI-Powered Coins

The cryptocurrency industry is being reshaped by the fusion of blockchain technology and artificial intelligence…

5 days ago

Top AI Design Tools Every Graphic Designer Should Use in 2024

Introduction Artificial Intelligence (AI) has also found its relevance in graphic design and is quickly…

1 month ago

Transforming Industries: The Integration of AI and Blockchain

Imagine a world where the brilliance of Artificial Intelligence (AI) meets the unbreakable security of…

2 months ago

How Can I Use Automation to Streamline My Digital Marketing Efforts?

In today’s fast-paced digital landscape, automation is not just a luxury but a necessity for…

2 months ago

Top 5 AI Technologies Transforming the Casino Gaming Landscape in 2025

The world of casino gaming has leveraged the emerging technology advancements to create immersive and…

2 months ago

Choosing the Best Web Hosting for Your Small Business Needs

Selecting the right web hosting for your small business is crucial for ensuring a smooth…

2 months ago

This website uses cookies.