Skip to content

Commit d0979bc

Browse files
Merge pull request #285112 from ggailey777/postman
[Functions][Postman] Replace big note with reference link.
2 parents fad3588 + 409a342 commit d0979bc

13 files changed

+49
-50
lines changed

articles/azure-functions/durable/durable-functions-create-portal.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,7 @@ If you are creating JavaScript Durable Functions, you'll need to install the [`d
7676

7777
1. Go back to the **HttpStart** function, choose **Get function Url**, and select the **Copy to clipboard** icon to copy the URL. You use this URL to start the **HelloSequence** function.
7878

79-
1. Use one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
80-
81-
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
82-
83-
The following example is a cURL command that sends a POST request to the durable function:
79+
1. Use a secure HTTP test tool to send an HTTP POST request to the URL endpoint. This example is a cURL command that sends a POST request to the durable function:
8480

8581
```bash
8682
curl -X POST https://{your-function-app-name}.azurewebsites.net/api/orchestrators/{functionName} --header "Content-Length: 0"
@@ -98,7 +94,7 @@ If you are creating JavaScript Durable Functions, you'll need to install the [`d
9894
}
9995
```
10096

101-
[!INCLUDE [api-test-http-request-tools-caution](../../../includes/api-test-http-request-tools-caution.md)]
97+
Make sure to choose an HTTP test tool that keeps your data secure. For more information, see [HTTP test tools](../functions-develop-local.md#http-test-tools).
10298

10399
1. Call the `statusQueryGetUri` endpoint URI and you see the current status of the durable function, which might look like this example:
104100

articles/azure-functions/durable/durable-functions-isolated-create-first-csharp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ To complete this quickstart, you need:
3939

4040
* [.NET Core SDK](https://dotnet.microsoft.com/download) version 3.1 or later installed.
4141

42+
* An HTTP test tool that keeps your data secure. For more information, see [HTTP test tools](../functions-develop-local.md#http-test-tools).
43+
4244
[!INCLUDE [quickstarts-free-trial-note](~/reusable-content/ce-skilling/azure/includes/quickstarts-free-trial-note.md)]
4345

4446
## <a name="create-an-azure-functions-project"></a>Create an Azure Functions project
@@ -111,9 +113,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
111113

112114
:::image type="content" source="media/durable-functions-create-first-csharp/isolated-functions-vscode-debugging.png" alt-text="Screenshot of the Azure local output window." lightbox="media/durable-functions-create-first-csharp/isolated-functions-vscode-debugging.png":::
113115

114-
1. Use one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
115-
116-
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
116+
1. Use an HTTP test tool to send an HTTP POST request to the URL endpoint.
117117

118118
The response is the HTTP function's initial result. It lets you know that the Durable Functions app orchestration started successfully. It doesn't yet display the end result of the orchestration. The response includes a few useful URLs.
119119

articles/azure-functions/durable/quickstart-java.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ To complete this quickstart, you need:
3636

3737
For Azure Functions _4.x_, Core Tools version 4.0.4915 or later is required.
3838

39+
* An HTTP test tool that keeps your data secure. For more information, see [HTTP test tools](../functions-develop-local.md#http-test-tools).
40+
3941
* An Azure subscription. To use Durable Functions, you must have an Azure Storage account.
4042

4143
[!INCLUDE [quickstarts-free-trial-note](~/reusable-content/ce-skilling/azure/includes/quickstarts-free-trial-note.md)]
@@ -355,9 +357,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
355357

356358
:::image type="content" source="media/quickstart-java/maven-functions-run.png" alt-text="Screenshot of Azure local output.":::
357359

358-
1. Use an HTTP test tool to send an HTTP POST request to the URL endpoint.
359-
360-
[!INCLUDE [api-test-http-request-tools-caution](../../../includes/api-test-http-request-tools-caution.md)]
360+
1. Use an HTTP test tool to send an HTTP POST request to the URL endpoint.
361361

362362
The response should look similar to the following example:
363363

articles/azure-functions/durable/quickstart-js-vscode.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ To complete this quickstart, you need:
4949
* [Azure Functions Core Tools](../functions-run-local.md) version 4.0.5382 or later installed.
5050

5151
::: zone-end
52-
52+
* An HTTP test tool that keeps your data secure. For more information, see [HTTP test tools](../functions-develop-local.md#http-test-tools).
53+
5354
* An Azure subscription. To use Durable Functions, you must have an Azure Storage account.
5455

5556
::: zone pivot="nodejs-model-v3"
@@ -261,9 +262,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
261262

262263
::: zone pivot="nodejs-model-v3"
263264

264-
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
265-
266-
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
265+
5. Use your browser or an HTTP test tool to send an HTTP POST request to the URL endpoint.
267266

268267
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
269268

@@ -273,9 +272,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
273272

274273
::: zone pivot="nodejs-model-v4"
275274

276-
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
277-
278-
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
275+
5. Use your browser or an HTTP test tool to send an HTTP POST request to the URL endpoint.
279276

280277
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
281278

articles/azure-functions/durable/quickstart-powershell-vscode.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ To complete this quickstart, you need:
2727

2828
* The latest version of [Azure Functions Core Tools](../functions-run-local.md) installed.
2929

30+
* An HTTP test tool that keeps your data secure. For more information, see [HTTP test tools](../functions-develop-local.md#http-test-tools).
31+
3032
* An Azure subscription. To use Durable Functions, you must have an Azure Storage account.
3133

3234
[!INCLUDE [quickstarts-free-trial-note](~/reusable-content/ce-skilling/azure/includes/quickstarts-free-trial-note.md)]
@@ -155,9 +157,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
155157

156158
:::image type="content" source="media/quickstart-js-vscode/functions-f5.png" alt-text="Screenshot of Azure local output.":::
157159

158-
1. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
159-
160-
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
160+
1. Use your browser or an HTTP test tool to send an HTTP POST request to the URL endpoint.
161161

162162
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
163163

articles/azure-functions/durable/quickstart-python-vscode.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ To complete this quickstart, you need:
2828

2929
* The latest version of [Azure Functions Core Tools](../functions-run-local.md) installed.
3030

31+
* An HTTP test tool that keeps your data secure. For more information, see [HTTP test tools](../functions-develop-local.md#http-test-tools).
32+
3133
* An Azure subscription. To use Durable Functions, you must have an Azure Storage account.
3234

3335
* [Python](https://www.python.org/) version 3.7, 3.8, 3.9, or 3.10 installed.
@@ -308,9 +310,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
308310

309311
::: zone pivot="python-mode-configuration"
310312

311-
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
312-
313-
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
313+
5. Use your browser or an HTTP test tool to send an HTTP POST request to the URL endpoint.
314314

315315
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
316316

@@ -341,9 +341,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
341341

342342
::: zone pivot="python-mode-decorators"
343343

344-
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
345-
346-
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
344+
5. Use your browser or an HTTP test tool to send an HTTP POST request to the URL endpoint.
347345

348346
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
349347

articles/azure-functions/durable/quickstart-ts-vscode.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ To complete this quickstart, you need:
4949
* [Azure Functions Core Tools](../functions-run-local.md) version 4.0.5382 or later installed.
5050

5151
::: zone-end
52-
52+
* An HTTP test tool that keeps your data secure. For more information, see [HTTP test tools](../functions-develop-local.md#http-test-tools).
53+
5354
* An Azure subscription. To use Durable Functions, you must have an Azure Storage account.
5455

5556
::: zone pivot="nodejs-model-v3"
@@ -263,9 +264,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
263264

264265
::: zone pivot="nodejs-model-v3"
265266

266-
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
267-
268-
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
267+
5. Use your browser or an HTTP test tool to send an HTTP POST request to the URL endpoint.
269268

270269
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
271270

@@ -275,9 +274,7 @@ Azure Functions Core Tools gives you the capability to run an Azure Functions pr
275274

276275
::: zone pivot="nodejs-model-v4"
277276

278-
5. Use your browser or one of these HTTP test tools to send an HTTP POST request to the URL endpoint:
279-
280-
[!INCLUDE [api-test-http-request-tools](../../../includes/api-test-http-request-tools.md)]
277+
5. Use your browser or an HTTP test tool to send an HTTP POST request to the URL endpoint.
281278

282279
Replace the last segment with the name of the orchestrator function (`HelloOrchestrator`). The URL should be similar to `http://localhost:7071/api/orchestrators/HelloOrchestrator`.
283280

articles/azure-functions/event-grid-how-tos.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,7 @@ To test an Event Grid trigger locally, you have to get Event Grid HTTP requests
127127
1. [Generate a request](#generate-a-request) and copy the request body from the viewer app.
128128
1. [Manually post the request](#manually-post-the-request) to the localhost URL of your Event Grid trigger function.
129129

130-
To send an HTTP post request, you need an HTTP test tool, like one of these:
131-
132-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
130+
To send an HTTP post request, you need an HTTP test tool. Make sure to choose a tool that keeps your data secure. For more information, see [HTTP test tools](functions-develop-local.md#http-test-tools).
133131

134132
When you're done testing, you can use the same subscription for production by updating the endpoint. Use the [`az eventgrid event-subscription update`](/cli/azure/eventgrid/event-subscription#az-eventgrid-event-subscription-update) Azure CLI command.
135133

articles/azure-functions/functions-create-serverless-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ In this article, you learn how to build highly scalable APIs with Azure Function
1919

2020
## Prerequisites
2121

22+
* An HTTP test tool that keeps your data secure. For more information, see [HTTP test tools](functions-develop-local.md#http-test-tools).
23+
2224
[!INCLUDE [Previous quickstart note](../../includes/functions-quickstart-previous-topics.md)]
2325

2426
After you create this function app, you can follow the procedures in this article.
@@ -63,9 +65,7 @@ Next, test your function to see how it works with the new API surface:
6365

6466
1. Press Enter to confirm that your function is working. You should see the response, "*Hello John*."
6567

66-
1. You can also call the endpoint with another HTTP method to confirm that the function isn't executed. To do so, use one of these HTTP test tools:
67-
68-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
68+
1. You can also call the endpoint with another HTTP method to confirm that the function isn't executed. For HTTP methods other than GET, you need to use a secure [HTTP test tool](functions-develop-local.md#http-test-tools).
6969

7070
## Proxies overview
7171

articles/azure-functions/functions-custom-handlers.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -565,9 +565,7 @@ In Azure, [query Application Insights traces](analyze-telemetry-data.md#query-te
565565

566566
### Test custom handler in isolation
567567

568-
Custom handler apps are a web server process, so it may be helpful to start it on its own and test function invocations by sending mock [HTTP requests](#request-payload) using one of these tools:
569-
570-
[!INCLUDE [api-test-http-request-tools](../../includes/api-test-http-request-tools.md)]
568+
Custom handler apps are a web server process, so it may be helpful to start it on its own and test function invocations by sending mock [HTTP requests](#request-payload). For sending HTTP requests with payloads, make sure to choose a tool that keeps your data secure. For more information, see [HTTP test tools](functions-develop-local.md#http-test-tools).
571569

572570
You can also use this strategy in your CI/CD pipelines to run automated tests on your custom handler.
573571

0 commit comments

Comments
 (0)