Skip to content

Commit 790a667

Browse files
Update quickstart-create-example-consumption-workflow.md
Reflecting the reviewer's feedback
1 parent cf6d044 commit 790a667

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

articles/logic-apps/quickstart-create-example-consumption-workflow.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,15 @@ This example uses an RSS trigger that checks an RSS feed, based on the specified
136136

137137
1. Save your workflow. On the designer toolbar, select **Save**.
138138

139-
This step instantly publishes your logic app resource and workflow live in the Azure portal. However, the trigger only checks the RSS feed without taking any other actions. So, you need to add an action to specify what you want to happen when the trigger fires.
139+
1. On the designer toolbar, select **Code view**. In the code editor, change the line **`"feedUrl": "@{encodeURIComponent(encodeURIComponent(`https://feeds.a.dj.com/rss/RSSMarketsMain.xml'))}"`** to the following version:
140+
141+
**`"feedUrl": "@{encodeURIComponent('https://feeds.a.dj.com/rss/RSSMarketsMain.xml')}"`**
140142

141-
1. On the logic app code view,
142-
change "feedUrl": "@{encodeURIComponent(encodeURIComponent('https://feeds.a.dj.com/rss/RSSMarketsMain.xml'))}" to
143-
"feedUrl": "@{encodeURIComponent('https://feeds.a.dj.com/rss/RSSMarketsMain.xml')}".
144-
This is necessary due to a double encoding issue, which must be manually corrected.
143+
This change is necessary to remove double-encoding behavior, which requires manual correction.
144+
145+
1. Switch back to the designer.
146+
147+
This step instantly publishes your logic app resource and workflow live in the Azure portal. However, the trigger only checks the RSS feed without taking any other actions. So, you need to add an action to specify what you want to happen when the trigger fires.
145148

146149
<a name="add-email-action"></a>
147150

0 commit comments

Comments
 (0)