MicrosoftDocs / msteams-docs

Source for the Microsoft Teams developer platform documentation.
https://aka.ms/teamsdev
Creative Commons Attribution 4.0 International
285 stars 508 forks source link

[Website] [AdaptvieCard alternative MessageCard summary property] #11730

Open ChetanSharma-msft opened 1 week ago

ChetanSharma-msft commented 1 week ago

Steps to reproduce

Copied from: https://github.com/microsoft/AdaptiveCards/issues/8962 Posted by: @KaMa-linkai

Details:

Temasでwebhookにより自社のホストよりデイリーの通知を行っています。 O365コネクタがobsoleteになりworkflowsに切り替えという事で試しています。 MessageCardを使っていたましたがAdaptiveCardへ更新しました。

MessageCardではsummaryプロパティによりTeamsのアクティビティ通知にテキストを表示出来たのですがAdaptiveCardで同様の事がしたいです。 MessageCardのAndroidでの通知を添付します。 AdaptiveCardだと「workflowsからの投稿」でプレビュー部のテキストは「Card」となります。投稿者は構わないのですがプレビュー部のテキストをwebhook呼び出し側から送り込みたいです。AdaptiveCardのスキーマにはMessageCardのsummaryのようなプロパティは見つけられませんでした。 Teamsの通知で短いテキストをwebhookから設定するAdaptiveCard以外の他代替手段などでも構いません。 Teamsサポートに問い合あせたところこちらを指示されたのでポストします。よろしく。 URL: https://adaptivecards.io/samples/ スクリーンショット 2024-07-16 10 08 38 image

Expected behavior

NA

Actual behavior

NA

Error details

No response

sayali-MSFT commented 1 week ago

@KaMa-linkai - Thanks for reporting your issue. We will check this at our end and will get back to you.

sayali-MSFT commented 4 days ago

While Adaptive Cards do not have a direct equivalent to the summary property, you can set a short text at the top of your card using the text property of a TextBlock. This will not be in the preview section but will be displayed prominently in the card itself.

Example:

{
    "type": "AdaptiveCard",
    "body": [
        {
            "type": "TextBlock",
            "text": "Your summary text here",
            "weight": "Bolder",
            "size": "Medium"
        },
        {
            "type": "TextBlock",
            "text": "Detailed content of the notification..."
        }
    ],
    "version": "1.2"
}

You can refer this-https://learn.microsoft.com/en-us/adaptive-cards/authoring-cards/universal-action-model

KaMa-linkai commented 3 days ago

thanks. (I want to output to the preview... to check on notification (Android).)