Skip to content

Commit 8d5c9e1

Browse files
authored
Update quickstart-create-example-consumption-workflow.md
Update RSS URL
1 parent 68648f3 commit 8d5c9e1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ This example uses an RSS trigger that checks an RSS feed, based on the specified
125125

126126
| Property | Required | Value | Description |
127127
|----------|----------|-------|-------------|
128-
| **The RSS feed URL** | Yes | <*RSS-feed-URL*> | The RSS feed URL to monitor. <br><br>This example uses the Wall Street Journal's RSS feed at **https://feeds.a.dj.com/rss/RSSMarketsMain.xml**. However, you can use any RSS feed that doesn't require HTTP authorization. Choose an RSS feed that publishes frequently, so you can easily test your workflow. |
128+
| **The RSS feed URL** | Yes | <*RSS-feed-URL*> | The RSS feed URL to monitor. <br><br>This example uses the Wall Street Journal's RSS feed at **https://feeds.content.dowjones.io/public/rss/RSSMarketsMain**. However, you can use any RSS feed that doesn't require HTTP authorization. Choose an RSS feed that publishes frequently, so you can easily test your workflow. |
129129
| **Chosen Property Will Be Used To Determine Which Items are New** | No | **PublishDate** | The property that determines which items are new. |
130130
| **Interval** | Yes | **30** | The number of intervals to wait between feed checks. <br><br>This example uses **30** as the interval because this value is the [minimum interval for the **RSS** trigger](/connectors/rss/#general-limits). |
131131
| **Frequency** | Yes | **Minute** | The unit of frequency to use for every interval. <br><br>This example uses **Minute** as the frequency. |
@@ -140,11 +140,11 @@ This example uses an RSS trigger that checks an RSS feed, based on the specified
140140
>
141141
> Don't select **Code view** in the trigger information pane, which opens code view in read-only mode.
142142
143-
1. In the code editor, find the line **`"feedUrl": "@{encodeURIComponent(encodeURIComponent(`https://feeds.a.dj.com/rss/RSSMarketsMain.xml'))}"`**.
143+
1. In the code editor, find the line **`"feedUrl": "@{encodeURIComponent(encodeURIComponent(`https://feeds.content.dowjones.io/public/rss/RSSMarketsMain'))}"`**.
144144

145145
1. Remove the extra function named **`encodeURIComponent()`** so that you have only one instance, for example:
146146

147-
**`"feedUrl": "@{encodeURIComponent('https://feeds.a.dj.com/rss/RSSMarketsMain.xml')}"`**
147+
**`"feedUrl": "@{encodeURIComponent('https://feeds.content.dowjones.io/public/rss/RSSMarketsMain')}"`**
148148

149149
You must make manually make this change to remove the double-encoding behavior.
150150

0 commit comments

Comments
 (0)