Skip to content

Azure Functions – Part 3: Handling HTTP Query GET and POST Requests

Last updated on 2018-11-08

Previous Tutorial: Azure Functions – Part 2: Serving HTML Pages with Azure Functions

Serving static pages is interesting, but a real application needs input from the user, and in the web this is mostly done by sending a query strings in an HTTP GET request, or by posting data in an HTTP POST request. Let’s see how we can handle this in Azure Functions.

So let’s go to our function app and create a new function:

As before, this function will have an HTTP trigger:

And lastly let’s set the language to C#, name it “HandlingGetAndPost”, and set the authentication to Anonymous:

Once again we get the default Azure HTTP Function template for C#, which in this case also contains much code that is relevant to this example! The default examples uses
req.GetQueryNameValuePairs().FirstOrDefault(q => string.Compare(q.Key, "name", true) == 0)
to fetch the first parameter called “name” that comes in the query string.

We will add some more code so the function can handle both GET and POST requests, and depending on the type of request it receives, parse the query string or the payload send in the POST request:

Using req.Method we check if the request was done with the GET or POST verb, and based on that we process the query string or the body of the request to fetch the value for “name”. Pretty straightforward.

So let’s test this through the Azure portal. On the right side of the editor there is a “Test” tab where we can set the query parameters and the request body, select which HTTP method to use, and send the data to the service by clicking on “Run” on the lower right corner.

Works like a charm 👍

Next Tutorial: Azure Functions – Part 4: Working with Visual Studio Code and Persisting Data

Published inProgramming

2 Comments

  1. Sriram Sriram

    Hi Vainolo, Thanks for sharing the info . Can you please suggest if we can have a request URL parameters for POST method .

    Regards,Sriram

Leave a Reply to SriramCancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Discover more from Musings of a Strange Loop

Subscribe now to keep reading and get access to the full archive.

Continue reading