Something strange started happening today with a Yammer Flow that has been running great for well over a year.
This flow will send a message to a MS Teams chat whenever someone creates a new post on Yammer. In previous state, it would display the message content within the post:
Starting today, messages are coming through with no information:
Here's the code being used for the Adaptive Card which has not been modified.
{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"text": "New PBI Yammer Post",
"spacing": "Medium",
"size": "Large",
"weight": "Bolder"
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"items": [
{
"type": "Image",
"style": "Icon",
"url": "https://github.com/microsoft/PowerBI-Icons/blob/main/PNG/Power-BI.png?raw=true",
"size": "Small"
}
],
"width": "auto"
},
{
"type": "Column",
"items": [
{
"type": "TextBlock",
"spacing": "None",
"text": "Created By: @{body('Get_user_details')?['full_name']}",
"isSubtle": true,
"wrap": true
},
{
"type": "TextBlock",
"spacing": "None",
"text": "Created On: @{formatdatetime(triggerOutputs()?['body/created_at'], 'yyyy-MM-dd h:mm tt')} (UTC)",
"isSubtle": true,
"wrap": true
}
],
"width": "stretch"
}
]
},
{
"type": "FactSet",
"facts": [
{
"title": "Message",
"value": "@{triggerOutputs()?['body/content_excerpt']}"
}
]
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "Go to message",
"url": "@{triggerOutputs()?['body/web_url']}"
}
]
}
],
"version": "1.2",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json"
}
Any help/guidance would be greatly appreciated. Thanks!