You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
16
16
17
-
This tutorial shows you how to use Azure 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.
17
+
This tutorial shows you how to use Azure Functions with Logic Apps and Cognitive Services on Azure to run sentiment analysis from Twitter posts. An HTTP trigger function categorizes tweets as green, yellow, or red based on the sentiment score. An email is sent when poor sentiment is detected.
18
18
19
19

20
20
@@ -63,7 +63,7 @@ The Cognitive Services APIs are available in Azure as individual resources. Use
63
63
64
64
4. Click **Create** to create your resource.
65
65
66
-
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.
66
+
5. Click **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.
@@ -73,17 +73,17 @@ The Cognitive Services APIs are available in Azure as individual resources. Use
73
73
74
74
## Create the function app
75
75
76
-
Azure 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.
76
+
Azure Functions provides a great way to offload processing tasks in a logic apps workflow. This tutorial uses an HTTP trigger function to process tweet sentiment scores from Cognitive Services and return a category value.
77
77
78
78
[!INCLUDE [Create function app Azure portal](../../includes/functions-create-function-app-portal.md)]
79
79
80
80
## Create an HTTP trigger function
81
81
82
82
1. From the left menu of the **Functions** window, select **Functions**, then select **Add** from the top menu.
83
83
84
-
2. From the **New Function** window, select **Http trigger**.
84
+
2. From the **New Function** window, select **HTTP trigger**.
85
85
86
-

0 commit comments