Adaptive Card Blank in handphone Android and iOS, sometimes, and previously worked fine
Hi, I created Power Automate to send Adaptive Cards to Microsoft Teams. Previously it was running normally, the cards were sent perfectly to both laptops and Android and iOS phones, but a few days later, about a week, the cards sent to the team’s phones were increasingly blank, even now every time there is a card, it is definitely blank if it is on a phone.
this code for the Adaptive Card
{
“type”: “AdaptiveCard”,
“body”: [
{
“type”: “TextBlock”,
“size”: “Medium”,
“weight”: “Bolder”,
“text”: “Ticket No. @{body(‘Update_Reject’)?[‘TicketNo’]} Has Been Reject!”
},
{
“type”: “TextBlock”,
“text”: “Hi, @{body(‘Update_Reject’)?[‘Author’]?[‘DisplayName’]}. Ticket No. @{body(‘Update_Reject’)?[‘TicketNo’]} has been reject by @{body(‘Update_Reject’)?[‘Approval’]?[‘Value’]}.”,
“wrap”: true
},
{
“type”: “FactSet”,
“facts”: [
{
“title”: “Ticket No.”,
“value”: “: @{body(‘Update_Reject’)?[‘TicketNo’]}”
},
{
“title”: “Publish Date”,
“value”: “: @{body(‘Update_Reject’)?[‘PublishDate’]}”
},
{
“title”: “Requester”,
“value”: “: @{body(‘Update_Reject’)?[‘Author’]?[‘DisplayName’]}”
},
{
“title”: “Request Type”,
“value”: “: @{body(‘Update_Reject’)?[‘RequestType’]?[‘Value’]}”
},
{
“title”: “Work Instruction”,
“value”: “: @{outputs(‘Get_RO’)?[‘body/WorkInstruction’]}”
},
{
“title”: “Reject By”,
“value”: “: @{body(‘Update_Reject’)?[‘Approval’]?[‘Value’]}”
},
{
“title”: “Status”,
“value”: “: Reject”
},
{
“title”: “Reason”,
“value”: “: @{body(‘Update_Reject’)?[‘Notes’]}”
}
]
},
{
“type”: “ActionSet”,
“actions”: [
{
“type”: “Action.OpenUrl”,
“title”: “Script Link”,
“id”: “ScriptButtonUrl”,
“url”: “@{body(‘Update_Reject’)?[‘Script’]}”,
“style”: “positive”
},
{
“type”: “Action.OpenUrl”,
“title”: “Test Result Link”,
“id”: “TestButtonUrl”,
“url”: “@{body(‘Update_Reject’)?[‘TestResultLink’]}”,
“style”: “positive”
},
{
“type”: “Action.OpenUrl”,
“title”: “Pentest Link”,
“id”: “PentestButtonUrl”,
“url”: “@{body(‘Update_Reject’)?[‘PentestLink’]}”,
“style”: “positive”
}
]
},
],
“$schema”: “http://adaptivecards.io/schemas/adaptive-card.json”,
“version”: “1.3”
}
what’s wrong, can you help me? thanks.
Hi, I created Power Automate to send Adaptive Cards to Microsoft Teams. Previously it was running normally, the cards were sent perfectly to both laptops and Android and iOS phones, but a few days later, about a week, the cards sent to the team’s phones were increasingly blank, even now every time there is a card, it is definitely blank if it is on a phone. this code for the Adaptive Card{
“type”: “AdaptiveCard”,
“body”: [
{
“type”: “TextBlock”,
“size”: “Medium”,
“weight”: “Bolder”,
“text”: “Ticket No. @{body(‘Update_Reject’)?[‘TicketNo’]} Has Been Reject!”
},
{
“type”: “TextBlock”,
“text”: “Hi, @{body(‘Update_Reject’)?[‘Author’]?[‘DisplayName’]}. Ticket No. @{body(‘Update_Reject’)?[‘TicketNo’]} has been reject by @{body(‘Update_Reject’)?[‘Approval’]?[‘Value’]}.”,
“wrap”: true
},
{
“type”: “FactSet”,
“facts”: [
{
“title”: “Ticket No.”,
“value”: “: @{body(‘Update_Reject’)?[‘TicketNo’]}”
},
{
“title”: “Publish Date”,
“value”: “: @{body(‘Update_Reject’)?[‘PublishDate’]}”
},
{
“title”: “Requester”,
“value”: “: @{body(‘Update_Reject’)?[‘Author’]?[‘DisplayName’]}”
},
{
“title”: “Request Type”,
“value”: “: @{body(‘Update_Reject’)?[‘RequestType’]?[‘Value’]}”
},
{
“title”: “Work Instruction”,
“value”: “: @{outputs(‘Get_RO’)?[‘body/WorkInstruction’]}”
},
{
“title”: “Reject By”,
“value”: “: @{body(‘Update_Reject’)?[‘Approval’]?[‘Value’]}”
},
{
“title”: “Status”,
“value”: “: Reject”
},
{
“title”: “Reason”,
“value”: “: @{body(‘Update_Reject’)?[‘Notes’]}”
}
]
},
{
“type”: “ActionSet”,
“actions”: [
{
“type”: “Action.OpenUrl”,
“title”: “Script Link”,
“id”: “ScriptButtonUrl”,
“url”: “@{body(‘Update_Reject’)?[‘Script’]}”,
“style”: “positive”
},
{
“type”: “Action.OpenUrl”,
“title”: “Test Result Link”,
“id”: “TestButtonUrl”,
“url”: “@{body(‘Update_Reject’)?[‘TestResultLink’]}”,
“style”: “positive”
},
{
“type”: “Action.OpenUrl”,
“title”: “Pentest Link”,
“id”: “PentestButtonUrl”,
“url”: “@{body(‘Update_Reject’)?[‘PentestLink’]}”,
“style”: “positive”
}
]
},
],
“$schema”: “http://adaptivecards.io/schemas/adaptive-card.json”,
“version”: “1.3”
} what’s wrong, can you help me? thanks. Read More