August 2017
Intermediate to advanced
468 pages
12h 5m
English
Let's create the Azure Function that will process the tweets by performing the following steps:
The function will be triggered by an HTTP WebHook from the Logic App and get the tweet body in JSON format. This code will leverage the Newtonsoft.Json library to deserialize the tweet from JSON:
using System; using System.Net; using Newtonsoft.Json; public static async Task Run(HttpRequestMessage req, TraceWriter log)