Skip to content

Commit cca5a9e

Browse files
Update quickstart-create-example-consumption-workflow.md
Due to a double encoding issue, the RSS trigger failed. To resolve this, I’ve added a method to fix the problem.
1 parent d5a1525 commit cca5a9e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

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

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

139139
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.
140140

141+
1. On the logic app code view,
142+
On the Logic App code view,
143+
change "feedUrl": "@{encodeURIComponent(encodeURIComponent('https://feeds.a.dj.com/rss/RSSMarketsMain.xml'))}" to
144+
"feedUrl": "@{encodeURIComponent('https://feeds.a.dj.com/rss/RSSMarketsMain.xml')}".
145+
This is necessary due to a double encoding issue, which must be manually corrected.
146+
141147
<a name="add-email-action"></a>
142148

143149
## Add an action

0 commit comments

Comments
 (0)