Я отправляю карточку на канал Microsoft Teams с кнопкой, содержащей запрос на публикацию. Когда я нажал кнопку, я получил следующую ошибку:
"Не удалось отправить
Не удалось выполнить запрошенное действие. Повторите попытку позже."
@type": "MessageCard",
"@context": "https://schema.org/extensions",
"summary": "{SUMMÁRIA}",
"themeColor": "0078D7",
"title": "{TÁJ} - {TÓÉ} ",
"sections": [
...sectionDescription],
"potentialAction": [
{
"name": "BUTTON LABEL",
"target": "https://<targetURL>",
/* I also tried this one "headers": [{
"name": "Authorization",
"value": "Basic base64",
}, {"name" : "Content-Type", "value": "application/json"}],*/
"headers": [{"Authorization": "Basic <BASE64STUFF>"}, {"Content-Type": "application/json"}, ],
"@type": "HttpPOST",
"url": "https://<TARGETURL>",
"bodyContentType": "application/json",
"body": JSON.stringify({
"buildType": {
"id": "hereisTheid"
},
"comment": {
"text": "message"
},
"properties": {
"property": [{
"name": "proprety",
"value": "valueofproperty"
},
{
"name": "properyt",
"value": "valueofProperty"
}
]
},
}),
},
{
"@type": "HttpPOST",
"name": "View Build",
"target": "https://....."
},
{
"@type": "HttpPOST",
"name": "Test results",
"target": "http://..."
}
]
Как я могу определить реакцию кнопки?