Skip to content

Commit 0387da9

Browse files
author
Glenn Gailey
committed
Revert "Functions update for portal UX refresh - batch 1"
This reverts commit cacc95f.
1 parent 6a40048 commit 0387da9

File tree

6 files changed

+11
-15
lines changed

6 files changed

+11
-15
lines changed

articles/azure-functions/functions-create-first-azure-function.md

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Create your first function in the Azure portal
33
description: Learn how to create your first Azure Function for serverless execution using the Azure portal.
44
ms.assetid: 96cf87b9-8db6-41a8-863a-abb828e3d06d
55
ms.topic: quickstart
6-
ms.date: 03/26/2020
6+
ms.date: 03/06/2020
77
ms.custom: mvc, devcenter, cc996988-fb4f-47
88
---
99

@@ -29,39 +29,35 @@ Next, create a function in the new function app.
2929

3030
## <a name="create-function"></a>Create an HTTP triggered function
3131

32-
1. From the left menu of the **Functions** window, select **Functions**, then select **Add** from the top menu.
33-
34-
1. From the **New Function** window, select **Http trigger**.
32+
1. Expand your new function app, select the **+** button next to **Functions**, choose **In-portal**, and then select **Continue**.
3533

36-
![Choose HTTP trigger function](./media/functions-create-first-azure-function/function-app-select-http-trigger.png)
34+
![Functions quickstart for choosing a platform.](./media/functions-create-first-azure-function/function-app-quickstart-choose-portal.png)
3735

38-
1. In the **New Function** window, accept the default name for **New Function**, or enter a new name.
36+
1. Choose **WebHook + API**, and then select **Create**.
3937

40-
1. Choose **Anonymous** from the **Authorization level** drop-down list, and then select **Create Function**.
38+
![Functions quickstart in the Azure portal.](./media/functions-create-first-azure-function/function-app-quickstart-node-webhook.png)
4139

42-
![HTTP trigger function settings](./media/functions-create-first-azure-function/function-app-http-trigger-settings.png)
40+
A function is created using a language-specific template for an HTTP triggered function.
4341

44-
Azure creates the HTTP trigger function. Now, you can run the new function by sending an HTTP request.
42+
Now, you can run the new function by sending an HTTP request.
4543

4644
## Test the function
4745

48-
1. In your new HTTP trigger function, select **Code + Test** from the left menu, then select **Get function URL** from the top menu.
46+
1. In your new function, select **</> Get function URL** at the top right.
4947

50-
![Select Get function URL](./media/functions-create-first-azure-function/function-app-select-get-function-url.png)
51-
52-
1. In the **Get function URL** dialog box, select **default** from the drop-down list, and then select the **Copy to clipboard** icon.
48+
1. In the **Get function URL** dialog box, select **default (Function key)** from the drop-down list, and then select **Copy**.
5349

5450
![Copy the function URL from the Azure portal](./media/functions-create-first-azure-function/function-app-develop-tab-testing.png)
5551

56-
1. Paste the function URL into your browser's address bar. Add the query string value `?name=<your_name>` to the end of this URL and press Enter to run the request.
52+
1. Paste the function URL into your browser's address bar. Add the query string value `&name=<your_name>` to the end of this URL and press Enter to run the request.
5753

5854
The following example shows the response in the browser:
5955

6056
![Function response in the browser.](./media/functions-create-first-azure-function/function-app-browser-testing.png)
6157

6258
The request URL includes a key that is required, by default, to access your function over HTTP.
6359

64-
1. When your function runs, trace information is written to the logs. To see the trace output from the previous execution, return to the **Code + Test** page in the portal and select the arrow at the bottom of the screen to expand the **Logs**. Select **Test** from the top menu.
60+
1. When your function runs, trace information is written to the logs. To see the trace output from the previous execution, return to your function in the portal and select the arrow at the bottom of the screen to expand the **Logs**.
6561

6662
![Functions log viewer in the Azure portal.](./media/functions-create-first-azure-function/function-view-logs.png)
6763

7.6 KB
Loading
8.7 KB
Loading

0 commit comments

Comments
 (0)