Nov 16 2022 10:11 PM
Hi,
I had developed a Microsoft Teams connector for our application, that can post requests from MS-Teams Message cards to our application, but since yesterday the Actionable messages are failing with the exception { displayMessage: "<p>Target URL is not allowed.</p>\n", errorCode: "InvalidTargetUrlException" }
This error is not just applicable to our connector, but other published connectors like Trello's and Incoming Web hook Connectors.
I realise there was an update with MS-Teams yesterday, did that in someway made changes to the connector actionable messages?
Expecting a response at the earliest possible.
Nov 30 2022 11:51 PM - edited Nov 30 2022 11:52 PM
@BaluVijayaKumar - We tried sending cards with Action.OpenUrl/Action.ShowCard via incoming webhook. Cards are posted successfully. Below is the card that we posted.
{
"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",
"body":[
{
"type": "TextBlock",
"text": "For Samples and Templates, see [https://adaptivecards.io/samples](https://adaptivecards.io/samples)"
}
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "Action.OpenUrl",
"url": "https://adaptivecards.io"
}
]
}
}
]
}
Can you confirm if you are still facing this issue, if yes can you please share the JSON that you tried to send?
Dec 04 2022 09:31 PM