Skip to content

Commit 28afa0d

Browse files
authored
Merge pull request #126368 from LimitlessDevv/main
Fix RSS trigger failure issue in Logic Apps Quickstart guide
2 parents 4c9c819 + 7e4169f commit 28afa0d

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,18 @@ This example uses an RSS trigger that checks an RSS feed, based on the specified
134134

135135
:::image type="content" source="media/quickstart-create-example-consumption-workflow/add-rss-trigger-settings.png" alt-text="Screenshot shows the RSS trigger settings, including RSS URL, frequency, interval, and others." lightbox="media/quickstart-create-example-consumption-workflow/add-rss-trigger-settings.png":::
136136

137+
1. On the designer toolbar, select **Code view**.
138+
139+
1. In the code editor, find the line **`"feedUrl": "@{encodeURIComponent(encodeURIComponent(`https://feeds.a.dj.com/rss/RSSMarketsMain.xml'))}"`**.
140+
141+
1. Remove the extra function named **`encodeURIComponent()`** so that you have only one instance, for example:
142+
143+
**`"feedUrl": "@{encodeURIComponent('https://feeds.a.dj.com/rss/RSSMarketsMain.xml')}"`**
144+
145+
This change is necessary to remove double-encoding behavior, which requires manual correction.
146+
147+
1. Switch back to the designer.
148+
137149
1. Save your workflow. On the designer toolbar, select **Save**.
138150

139151
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.

0 commit comments

Comments
 (0)