Skip to content

Latest commit

 

History

History
302 lines (188 loc) · 14.2 KB

functions-twitter-email.md

File metadata and controls

302 lines (188 loc) · 14.2 KB
title description services keywords author manager ms.assetid ms.service ms.topic ms.date ms.author ms.custom
Create a function that integrates with Azure Logic Apps
Create a function that integrates with Azure Logic Apps and Azure Cognitive Services to categorize tweet sentiment and send notifications when sentiment is poor.
functions, logic-apps, cognitive-services
workflow, cloud apps, cloud services, business processes, system integration, enterprise application integration, EAI
craigshoemaker
jeconnoc
60495cc5-1638-4bf0-8174-52786d227734
azure-functions
tutorial
11/06/2018
cshoe
mvc, cc996988-fb4f-47

Create a function that integrates with Azure Logic Apps

Azure Functions integrates with Azure Logic Apps in the Logic Apps Designer. This integration lets you use the computing power of Functions in orchestrations with other Azure and third-party services.

This tutorial shows you how to use Functions with Logic Apps and Cognitive Services on Azure to run sentiment analysis from Twitter posts. An HTTP triggered function categorizes tweets as green, yellow, or red based on the sentiment score. An email is sent when poor sentiment is detected.

image first two steps of app in Logic App Designer

In this tutorial, you learn how to:

[!div class="checklist"]

  • Create a Cognitive Services API Resource.
  • Create a function that categorizes tweet sentiment.
  • Create a logic app that connects to Twitter.
  • Add sentiment detection to the logic app.
  • Connect the logic app to the function.
  • Send an email based on the response from the function.

Prerequisites

Create a Cognitive Services resource

The Cognitive Services APIs are available in Azure as individual resources. Use the Text Analytics API to detect the sentiment of the tweets being monitored.

  1. Sign in to the Azure portal.

  2. Click Create a resource in the upper left-hand corner of the Azure portal.

  3. Click AI + Machine Learning > Text Analytics. Then, use the settings as specified in the table to create the resource.

    Create Cognitive resource page

    Setting Suggested value Description
    Name MyCognitiveServicesAccnt Choose a unique account name.
    Location West US Use the location nearest you.
    Pricing tier F0 Start with the lowest tier. If you run out of calls, scale to a higher tier.
    Resource group myResourceGroup Use the same resource group for all services in this tutorial.
  4. Click Create to create your resource.

  5. Click on Overview and copy the value of the Endpoint to a text editor. This value is used when creating a connection to the Cognitive Services API.

    Cognitive Services Settings

  6. In the left navigation column, click Keys, and then copy the value of Key 1 and set it aside in a text editor. You use the key to connect the logic app to your Cognitive Services API.

    Cognitive Services Keys

Create the function app

Functions provides a great way to offload processing tasks in a logic apps workflow. This tutorial uses an HTTP triggered function to process tweet sentiment scores from Cognitive Services and return a category value.

[!INCLUDE Create function app Azure portal]

Create an HTTP triggered function

  1. Expand your function app and click the + button next to Functions. If this is the first function in your function app, select In-portal.

    Functions quickstart page in the Azure portal

  2. Next, select Webhook + API and click Create.

    Choose the HTTP trigger

  3. Replace the contents of the run.csx file with the following code, then click Save:

    #r "Newtonsoft.Json"
    
    using System;
    using System.Net;
    using Microsoft.AspNetCore.Mvc;
    using Microsoft.Extensions.Logging;
    using Microsoft.Extensions.Primitives;
    using Newtonsoft.Json;
    
    public static async Task<IActionResult> Run(HttpRequest req, ILogger log)
    {
        string category = "GREEN";
    
        string requestBody = await new StreamReader(req.Body).ReadToEndAsync();
        log.LogInformation(string.Format("The sentiment score received is '{0}'.", requestBody));
    
        double score = Convert.ToDouble(requestBody);
    
        if(score < .3)
        {
            category = "RED";
        }
        else if (score < .6) 
        {
            category = "YELLOW";
        }
    
        return requestBody != null
            ? (ActionResult)new OkObjectResult(category)
            : new BadRequestObjectResult("Please pass a value on the query string or in the request body");
    }

    This function code returns a color category based on the sentiment score received in the request.

  4. To test the function, click Test at the far right to expand the Test tab. Type a value of 0.2 for the Request body, and then click Run. A value of RED is returned in the body of the response.

    Test the function in the Azure portal

Now you have a function that categorizes sentiment scores. Next, you create a logic app that integrates your function with your Twitter and Cognitive Services API.

Create a logic app

  1. In the Azure portal, click the New button found on the upper left-hand corner of the Azure portal.

  2. Click Web > Logic App.

  3. Then, type a value for Name like TweetSentiment, and use the settings as specified in the table.

    Create logic app in the Azure portal

    Setting Suggested value Description
    Name TweetSentiment Choose an appropriate name for your app.
    Resource group myResourceGroup Choose the same existing resource group as before.
    Location East US Choose a location close to you.
  4. Once you have entered the proper settings values, click Create to create your logic app.

  5. After the app is created, click your new logic app pinned to the dashboard. Then in the Logic Apps Designer, scroll down and click the Blank Logic App template.

    Blank Logic Apps template

You can now use the Logic Apps Designer to add services and triggers to your app.

Connect to Twitter

First, create a connection to your Twitter account. The logic app polls for tweets, which trigger the app to run.

  1. In the designer, click the Twitter service, and click the When a new tweet is posted trigger. Sign in to your Twitter account and authorize Logic Apps to use your account.

  2. Use the Twitter trigger settings as specified in the table.

    Twitter connector settings

    Setting Suggested value Description
    Search text #Azure Use a hashtag that is popular enough to generate new tweets in the chosen interval. When using the Free tier and your hashtag is too popular, you can quickly use up the transaction quota in your Cognitive Services API.
    Interval 15 The time elapsed between Twitter requests, in frequency units.
    Frequency Minute The frequency unit used for polling Twitter.
  3. Click Save to connect to your Twitter account.

Now your app is connected to Twitter. Next, you connect to text analytics to detect the sentiment of collected tweets.

Add sentiment detection

  1. Click New Step, and then Add an action.

  2. In Choose an action, type Text Analytics, and then click the Detect sentiment action.

    New Step, and then Add an action

  3. Type a connection name such as MyCognitiveServicesConnection, paste the key for your Cognitive Services API and the Cognitive Services endpoint you set aside in a text editor, and click Create.

    New Step, and then Add an action

  4. Next, enter Tweet Text in the text box and then click on New Step.

    Define text to analyze

Now that sentiment detection is configured, you can add a connection to your function that consumes the sentiment score output.

Connect sentiment output to your function

  1. In the Logic Apps Designer, click New step > Add an action, filter on Azure Functions and click Choose an Azure function.

    Detect Sentiment

  2. Select the function app you created earlier.

    Select function

  3. Select the function you created for this tutorial.

    Select function

  4. In Request Body, click Score and then Save.

    Score

Now, your function is triggered when a sentiment score is sent from the logic app. A color-coded category is returned to the logic app by the function. Next, you add an email notification that is sent when a sentiment value of RED is returned from the function.

Add email notifications

The last part of the workflow is to trigger an email when the sentiment is scored as RED. This topic uses an Outlook.com connector. You can perform similar steps to use a Gmail or Office 365 Outlook connector.

  1. In the Logic Apps Designer, click New step > Add a condition.

    Add a condition to the logic app.

  2. Click Choose a value, then click Body. Select is equal to, click Choose a value and type RED, and click Save.

    Choose an action for the condition.

  3. In IF TRUE, click Add an action, search for outlook.com, click Send an email, and sign in to your Outlook.com account.

    Configure the email for the send an email action.

    [!NOTE] If you don't have an Outlook.com account, you can choose another connector, such as Gmail or Office 365 Outlook

  4. In the Send an email action, use the email settings as specified in the table.

    Configure the email for the send an email action.

Setting Suggested value Description
To Type your email address The email address that receives the notification.
Subject Negative tweet sentiment detected The subject line of the email notification.
Body Tweet text, Location Click the Tweet text and Location parameters.
  1. Click Save.

Now that the workflow is complete, you can enable the logic app and see the function at work.

Test the workflow

  1. In the Logic App Designer, click Run to start the app.

  2. In the left column, click Overview to see the status of the logic app.

    Logic app execution status

  3. (Optional) Click one of the runs to see details of the execution.

  4. Go to your function, view the logs, and verify that sentiment values were received and processed.

    View function logs

  5. When a potentially negative sentiment is detected, you receive an email. If you haven't received an email, you can change the function code to return RED every time:

    return (ActionResult)new OkObjectResult("RED");

    After you have verified email notifications, change back to the original code:

    return requestBody != null
        ? (ActionResult)new OkObjectResult(category)
        : new BadRequestObjectResult("Please pass a value on the query string or in the request body");

    [!IMPORTANT] After you have completed this tutorial, you should disable the logic app. By disabling the app, you avoid being charged for executions and using up the transactions in your Cognitive Services API.

Now you have seen how easy it is to integrate Functions into a Logic Apps workflow.

Disable the logic app

To disable the logic app, click Overview and then click Disable at the top of the screen. Disabling the app stops it from running and incurring charges without deleting the app.

Function logs

Next steps

In this tutorial, you learned how to:

[!div class="checklist"]

  • Create a Cognitive Services API Resource.
  • Create a function that categorizes tweet sentiment.
  • Create a logic app that connects to Twitter.
  • Add sentiment detection to the logic app.
  • Connect the logic app to the function.
  • Send an email based on the response from the function.

Advance to the next tutorial to learn how to create a serverless API for your function.

[!div class="nextstepaction"] Create a serverless API using Azure Functions

To learn more about Logic Apps, see Azure Logic Apps.