microsoft / coe-starter-kit

Other
726 stars 212 forks source link

[CoE Starter Kit - BUG] Blogs in CoE Admin Command App #8573

Open Titoleto opened 2 weeks ago

Titoleto commented 2 weeks ago

Does this bug already exist in our backlog?

Describe the issue

The Power Apps, Power Automate and Power Virtual Agents ((this name should be changed) blogs are not being filtered correctly. In the Items of the element pivotNav:

It doesn't show icons either, probably because the OnStart when creating the colRSSNew collection is not doing it right in the If condition filtering by the primaryLink. For example, it is searching for powervirtualagents.microsoft.com when it should be searching for microsoft-copilot.

image

image

Expected Behavior

No response

What solution are you experiencing the issue with?

Core

What solution version are you using?

4.32.2

What app or flow are you having the issue with?

CoE Admin Command Center

What method are you using to get inventory and telemetry?

Cloud flows

Steps To Reproduce

No response

Anything else?

No response

AB#3796

Jenefer-Monroe commented 2 weeks ago

Looks like some things shifted since we shipped this. Easy fix. Done for August. Thanks for posting

Titoleto commented 2 weeks ago

Looks like some things shifted since we shipped this. Easy fix. Done for August. Thanks for posting In addition to what I said yesterday, no blog is listed today. image I've made a small canvas application in which I've only put the collection ClearCollect( tempCollection, RSS.ListFeedItems("https://powerapps.microsoft.com/en-us/blog/feed/"), RSS.ListFeedItems("https://powerautomate.microsoft.com/en-us/blog/feed/"), RSS.ListFeedItems("https://microsoftcopilotstudio.microsoft.com/en-us/blog/feed/"), RSS.ListFeedItems("https://powerbi.microsoft.com/en-us/blog/feed/") )

and I'm getting the following error image

From what I've seen, the error occurs in exactly this RSS Feed RSS.ListFeedItems("https://powerautomate.microsoft.com/en-us/blog/feed/") If I remove it from the collection, the rest of the RSS Feed are fetched correctly. I believe the correct URL is this one: https://www.microsoft.com/en-us/power-platform/blog/power-automate/feed/

Jenefer-Monroe commented 2 weeks ago

Looks like the product is continuing to iterate here as this behavior has changed from yesterday for me. Let's let it sit for a bit and see what flushes out in the end.

Jenefer-Monroe commented 6 days ago

it looks like that power automate redirect is working again

Titoleto commented 2 days ago

it looks like that power automate redirect is working again

They must be doing something since it failed again today.

Jenefer-Monroe commented 1 day ago

Thats annoying! Thanks for letting me know. I'll see what I can do for August.

Jenefer-Monroe commented 1 day ago

I just gave up on redirects:

ClearCollect(
        colRSS,
        RSS.ListFeedItems("https://www.microsoft.com/en-us/power-platform/blog/power-apps/feed/"),
        RSS.ListFeedItems("https://www.microsoft.com/en-us/power-platform/blog/power-automate/feed/"),
        RSS.ListFeedItems("https://www.microsoft.com/en-us/microsoft-copilot/blog/copilot-studio/feed/"),
        RSS.ListFeedItems("https://powerbi.microsoft.com/en-us/blog/feed/")
    )

Image