Hi
The error message you're encountering, Error.(RSS.FeedListItems failed: {"status" 403, "message": "the underlying rss server forbids incoming requests"}
, typically indicates that the server hosting the RSS feed is blocking incoming requests from PowerApps or other automated services.
Check Feed Permissions: Ensure that the RSS feed is publicly accessible and doesn't have restrictions (e.g., IP whitelisting, specific user agents blocked, or authentication required).
Verify that the feed URL (https://www.mi5.gov.uk/UKThreatLevel/UKThreatLevel.xml
) is accessible directly in a browser without any authentication.
Sometimes using a service like
Feedly or other RSS-to-API services can help bypass restrictions.
Use HTTP Client Connector
{
"method": "GET",
"url": "https://www.mi5.gov.uk/UKThreatLevel/UKThreatLevel.xml"
}
Add User Agent Header:
{
"method": "GET",
"url": "https://www.mi5.gov.uk/UKThreatLevel/UKThreatLevel.xml",
"headers": {
"User-Agent": "PowerApps/1.0"
}
}
Use Power Automate and RSS Feed:
You can fetch the RSS feed in Power Automate and then pass the parsed data to Power Apps for display.
Please click Does this answer your question if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it a Like.