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.
Quick Snapshot
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.
On the Function app,choose App name,Resource group appropriately
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.
On the left-hand side, under the new Functions app, Click on ‘+’ to create 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.
There is an option to test the code inside the console itself.
Copy the function URL.
To the function URL append query parameter &name=<name>
and make request to the function.
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 :
- Developer guide
- Azure Functions Developer Guide
- Serverless tutorial – Invoke Azure functions using HTTP Trigger
- Serverless Comparison : AWS Lambda vs. Azure Functions vs. Google Functions
- Visualize IoT-scale time-series data using Azure Time Series Insights
- Serverless tutorial – On HTTP trigger store data in Azure Cosmos DB
Average Rating