Skip to content

Commit 8d730c0

Browse files
committed
Updates per dev
1 parent 4e675c1 commit 8d730c0

File tree

2 files changed

+8
-26
lines changed

2 files changed

+8
-26
lines changed

articles/connectors/connectors-native-http.md

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ To check or *poll* an endpoint on a recurring schedule, [add the HTTP trigger](#
2424
To call an endpoint from anywhere else in your workflow, [add the HTTP action](#http-action). The endpoint's response determines how your workflow's remaining actions run.
2525

2626
> [!IMPORTANT]
27-
> When an HTTP trigger or action sends a `GET` request or doesn't have a request body,
28-
> Logic Apps removes these headers when included, but without warning or error:
27+
> If an HTTP trigger or action includes these headers, Logic Apps removes these
28+
> headers from the generated request message without showing any warning or error:
2929
>
3030
> * `Accept-*`
3131
> * `Allow`
32-
> * `Content-*`
32+
> * `Content-*` with these exceptions: `Content-Disposition`, `Content-Encoding`, and `Content-Type`
3333
> * `Cookie`
3434
> * `Expires`
3535
> * `Host`
@@ -38,10 +38,8 @@ To call an endpoint from anywhere else in your workflow, [add the HTTP action](#
3838
> * `Set-Cookie`
3939
> * `Transfer-Encoding`
4040
>
41-
> Although Logic Apps won't stop you from saving logic apps that use an HTTP trigger
42-
> or action with these headers, Logic Apps ignores these headers. This behavior
43-
> doesn't apply to other request types, such as `PUT` and `POST`, as long as these
44-
> requests include request bodies.
41+
> Although Logic Apps won't stop you from saving logic apps that use an
42+
> HTTP trigger or action with these headers, Logic Apps ignores these headers.
4543
4644
This article shows how to add an HTTP trigger or action to your logic app's workflow.
4745

articles/connectors/connectors-native-reqres.md

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,6 @@ With [Azure Logic Apps](../logic-apps/logic-apps-overview.md) and the built-in R
4444

4545
This built-in trigger creates a manually callable HTTPS endpoint that can receive *only* incoming HTTPS requests. When this event happens, the trigger fires and runs the logic app. For more information about the trigger's underlying JSON definition and how to call this trigger, see the [Request trigger type](../logic-apps/logic-apps-workflow-actions-triggers.md#request-trigger) and [Call, trigger, or nest workflows with HTTP endpoints in Azure Logic Apps](../logic-apps/logic-apps-http-endpoint.md).
4646

47-
> [!IMPORTANT]
48-
> When you use the Request trigger, Logic Apps removes these headers when included, but without warning or error:
49-
>
50-
> * `Accept-*`
51-
> * `Allow`
52-
> * `Content-*` with these exceptions: `Content-Disposition`, `Content-Encoding`, and `Content-Type`
53-
> * `Cookie`
54-
> * `Expires`
55-
> * `Host`
56-
> * `Last-Modified`
57-
> * `Origin`
58-
> * `Set-Cookie`
59-
> * `Transfer-Encoding`
60-
>
61-
> Although Logic Apps won't stop you from saving logic apps that use a
62-
> Response action with these headers, Logic Apps ignores these headers.
63-
6447
1. Sign in to the [Azure portal](https://portal.azure.com). Create a blank logic app.
6548

6649
1. After Logic App Designer opens, in the search box, enter "http request" as your filter. From the triggers list, select the **When an HTTP request is received** trigger, which is the first step in your logic app workflow.
@@ -217,7 +200,8 @@ You can use the Response action to respond with a payload (data) to an incoming
217200
Your logic app keeps the incoming request open only for one minute. Assuming that your logic app workflow includes a Response action, if the logic app doesn't return a response after this time passes, your logic app returns a `504 GATEWAY TIMEOUT` to the caller. Otherwise, if your logic app doesn't include a Response action, your logic app immediately returns a `202 ACCEPTED` response to the caller.
218201

219202
> [!IMPORTANT]
220-
> For any Response message, Logic Apps removes these headers when included, but without warning or error:
203+
> If a Response action includes these headers, Logic Apps removes these headers
204+
> from the generated response message without showing any warning or error:
221205
>
222206
> * `Allow`
223207
> * `Content-*` with these exceptions: `Content-Disposition`, `Content-Encoding`, and `Content-Type`
@@ -227,7 +211,7 @@ Your logic app keeps the incoming request open only for one minute. Assuming tha
227211
> * `Set-Cookie`
228212
> * `Transfer-Encoding`
229213
>
230-
> Although Logic Apps won't stop you from saving logic apps that use a
214+
> Although Logic Apps won't stop you from saving logic apps that have a
231215
> Response action with these headers, Logic Apps ignores these headers.
232216

233217
1. In the Logic App Designer, under the step where you want to add a Response action, select **New step**.

0 commit comments

Comments
 (0)