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

Navigating Volatility: Investing in Crypto Derivatives and Risk Management Strategies

The cryptocurrency market is famed for its volatility, presenting each opportunity and demanding situations for…

2 weeks ago

How Game Developers Use AI in Mobile Games in 2024?

Games since time immemorial have been winning at captivating the users and teleporting them onto…

2 weeks ago

The Impact of AI on Software Development

We are living within an innovation curve wherein cutting-edge technologies are making a hustle and…

2 weeks ago

AI Tools for Research Paper Writing: Learn What They Can Do

Whether it’s the healthcare industry or the automobile sector, artificial intelligence has left its impact…

4 weeks ago

Embracing Innovation: 5 Ways AI is Transforming the Landscape in 2024

Facts only- The big Artificial Intelligence push is unraveling in 2024. No, it wasn’t merely…

4 weeks ago

The Startup Guide to Acquiring Exceptional Developers

In the fiercely competitive world of Hire Developers for Startup, success hinges not just on…

2 months ago

This website uses cookies.