如何从使用 Powerapps 工作流发送的 Microsoft Teams 消息中删除页脚?

问题描述 投票:0回答:2

Microsoft 将从 Microsoft Teams 中淘汰 Office 365 连接器,包括允许通过非常简单的 POST 消息自动发送消息的 Webhook 连接器(请参阅来自 microsoft 的开发博客)。

我正在切换到使用名为 的 PowerApps 流的给定解决方案:收到 Webhook 请求时发布到频道

一切都工作得很好,但我有一个深深的、丑陋的、令人恼火的页脚,它被添加到每条消息中(有时,当使用操作按钮时,而不是在底部)。上面写着

"[USERNAME] used a Workflow template to send this card. Get template"

如何禁用 JSON 请求中的页脚。我现在的身材是:

{
        "type": "message",
        "attachments": [ {
            "contentType":"application/vnd.microsoft.card.adaptive",
             "contentUrl":null,
             "content":{
                "$schema":"http://adaptivecards.io/schemas/adaptive-card.json",
                "type":"AdaptiveCard",
                "version":"1.2",
                "msteams": {
                    "width": "Full",
                },
                "body":[
                    {
                        "type": "TextBlock",
                        "size": "medium",
                        "weight": "bolder",
                        "text": "Header Text",
                        "style": "heading",
                        "wrap": false
                    },
                    {
                        "type": "TextBlock",
                        "text": "Simple text"
                        "wrap": true
                    }
                ]
            }
        }
    ]
}
workflow microsoft-teams powerapps
2个回答
1
投票

目前,没有直接的方法可以通过 JSON 请求或工作流程接口删除此页脚。它会自动添加到使用某些模板发送的卡片中。


0
投票

创建工作流程的副本似乎可以解决问题。通过这篇文章发现了这一点。为我工作。

© www.soinside.com 2019 - 2024. All rights reserved.