Power Apps RSS Feed

    Do you ever think that you can use any Website RSS Feed in Power Apps and view the link details in the app itself? Yes, you are right. For this purpose, you can use the Power Apps RSS Feed.

    In this PowerApps Tutorial, We will discuss what is an RSS Feed in PowerApps, what are the various RSS Feed properties in PowerApps.

    Also, We will see how to connect the RSS Feed connector in PowerApps and how we can use the RSS Feed in the app.

    PowerApps RSS Feed Connector

    • RSS is also known as Really Simple Syndication that helps to allow the users and applications to access updates to websites in a readable format.
    • This RSS Feed is a web feed where a reader can get all the information without wasting the time browsing the World Wide Web for it.
    • Similarly, while you will work the RSS Feed in PowerApps, it is known as PowerApps RSS Feed. To display any updates from any website, you need to connect an RSS Feed connector to the app.

    PowerApps RSS Feed Properties

    The below table represents all important properties that are available in the PowerApps RSS Feed. Such as:

    NamePathTypeDescription
    Feed IDidstringIt specifies the Feed ID
    Feed titletitlestringIt specifies the Feed title
    Primary feed linkprimaryLinkstringIt helps to get the Primary feed link
    Feed linkslinksarray of stringIt helps to get the Feed links
    Feed updated onupdatedOnstringIt defines the date that the Feed has been updated on
    Feed published onpublishDatestringIt specifies the Feed published date
    Feed summarysummarystringIt represents the Feed item summary
    Feed copyright informationcopyrightstringIt defines the copyright information
    Feed categoriescategoriesarray of stringIt defines the Feed item categories

    Connect RSS Feed in PowerApps

    • Before creating the RSS Feed app, you must need to connect the RSS connector to the PowerApps.
    • To connect the RSS in the app, go to the Data tab (from the left navigation pane) -> +Add data -> Search RSS in the search box as shown below.
    PowerApps RSS Feed
    PowerApps RSS Feed
    • Click on the RSS connector and then tap the Connect button. Once you will click on it, then the RSS connector will connect to the app. Without an RSS Feed connector, it is not possible to display any website details in the app. Now the connector is ready to use.
    PowerApps RSS Feed connector
    Power Apps RSS Feed

    Read Power Apps Azure AD Group

    Add a PowerApps Control and Fetch the Feed URL

    Next, we will see how to use the RSS Feed URL and display the result in a PowerApps gallery control. Not only the Gallery control, but also you can use a PowerApps Data table control. Let me show you both the cases.

    Display the RSS Feed in a PowerApps Gallery Control

    In this scenario, I would like to display the news of Times of India by using its RSS Feed link. Also, the news information will display in a PowerApps Gallery control as shown in the below screenshot.

    Power Apps RSS Feed
    Power Apps RSS Feed
    • To achieve this, first of all, you need to take the RSS feed link from that specific news website. Copy the RSS feed link and paste it in a notepad.
    • Then, select the gallery and apply the below code on its Items property as:
    Items = RSS.ListFeedItems("https://timesofindia.indiatimes.com/rssfeedstopstories.cms")

    Where,

    “https://timesofindia.indiatimes.com/rssfeedstopstories.cms” = This is the RSS Feed link of that specific news site. Just paste this link that you have copied from that website and it should be present within the inverted comma (” “)

    Power Apps RSS Feed connector
    • As you can see the gallery control is having with Title and subtitle layout, that’s why I have displayed only the Title and Summary propeties of the RSS.
    • If in case you want to display more RSS properties in the gallery, then you can change its Layout property and then add the properties to the respective layout.
    • Suppose you want to add more RSS properties to the data table, then you can add it by using the Edit fields section.
    • Select the Data table -> Go to Properties pane -> Click on Edit fields from the Fields section -> + Add field -> Select the properties or fields that you want -> tap on Add button as like the below screenshot. Once you will add, then the specific fields will appear in the gallery control.
    • To design this PowerApps RSS Feed app, you can use some properties of the gallery control like Layout, Border, Font size and Font weight of the gallery label, etc.
    PowerApps RSS
    PowerApps RSS

    This is how we can display the RSS Feed in a PowerApps Gallery Control.

    Display the RSS Feed in a PowerApps Data Table Control

    • Similarly, as I said, not only the gallery but also we can use a Data table control to view the RSS Feed information of any website.
    • The below screenshot represents a PowerApps Data table control that displays my SharePoint guide site details through the RSS Feed link.
    PowerApps RSS Connector
    PowerApps RSS Connector
    • To workaround with this, select the data table and set the below code on its Items property as:
    Items = RSS.ListFeedItems("https://spguides.com/feed")

    Where,

    “https://spguides.com/feed” = This is my website link Feed

    RSS in PowerApps
    • Suppose you want to add more RSS properties to the data table, then you can add it by using the Edit fields section.
    • Select the Data table -> Go to Properties pane -> Click on Edit fields from the Fields section -> + Add field -> Select the properties or fields that you want -> tap on Add button as like the below screenshot.
    • Once you will add, then the specific fields will appear in the data table control.
    • To design this PowerApps RSS Feed app, you can use some properties of the data table control like Font size, Border, Heading Font, Heading Size, Fill, etc.
    Power Apps RSS
    Power Apps RSS

    This is how we can display the RSS Feed in a PowerApps Data table Control.

    Also, you may like the below PowerApps Tutorials:

    In this PowerApps Tutorial, We discussed what is an RSS Feed in PowerApps, what are the various RSS Feed properties in PowerApps. Also, We saw how to connect the RSS Feed connector in PowerApps and how to use the RSS Feed in the app.

    comment_count comments
    Oldest
    Newest
    Oldest

    Comment as a guest:

    >