Я создал бота (nodejs
сервер) для команд - через структуру ботов.
Я пытаюсь отправить созданную мной адаптивную карту через: конструктор адаптивных карт
, и я получаю сообщение об ошибке:
{"code":"BadArgument","message":"ContentType of an attachment is not set"}
Тело запроса:
{
"type": "message",
"from": {
"id": "xxxxxx"
},
"conversation": {
"id": "xxxxxx"
},
"recipient": {
"id": "xxxxx"
},
"replyToId": "xxxxx",
"text": "some text",
"attachments": [
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.2",
"body": [
{
"type": "TextBlock",
"text": "some text"
},
{
"type": "Input.Date",
"separator": true
}
]
}
]
}
Буду признателен за помощь