문제

I'm sending custom adaptive card from flow..

It is working on web and mobile clients for my Dev environment.. The same thing fails in my client's tenant for his android and iOS .. His web displays adaptive card right.. Any ideas?

I've got approval for the originator

올바른 솔루션이 없습니다

다른 팁

Please try changing the type of card to "AdaptiveCard" instead of "AdaptiveCards".

For example:

{ 
    "fallbackText":"Adaptive card version not supported",
    "type":"AdaptiveCard",
    "body":[ 
       { 
          "text":"Here is an adaptive card with a link to a task module",
          "type":"TextBlock"
       },
       { 
          "type":"Image",
          "url":"http://adaptivecards.io/content/cats/1.png"
       }
    ],
    "version":"1.0",
    "actions":[ 
       { 
          "type":"Action.OpenUrl",
          "title":"Open Link",
          "url":"https://teams.microsoft.com/l/task/xxxxx?url=https%3A%2F%2Fwww.wikipedia.com%0A&height=large&width=large&title=Wikipedia-Embed"
       }
    ]
 }

And, please confirm if you have the latest version of Teams app?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top