Загрузка...

How to make it so that a photo is attached to a message in a VK bot?

Thread in JS/TS created by rla Oct 26, 2021. 413 views

  1. rla
    я добавлю перед кнопками {attachment: ''} но у меня пропадают кнопки а фото прикрепляется
    cmd.on(/^(?:привет)$/i, async (message, bot) => {
    message.sendSticker(50459)
    message.user.foolder += 1;
    await bot(`Раздел команд:
    команды`, {
    keyboard:JSON.stringify(
    {
    "inline": true,
    "buttons": [
    [{
    "action": {
    "type": "text",
    "payload": "{\"button\": \"2\"}",
    "label": "кнопка"
    },
    "color": "primary"

    }
    ]
    ]
    })
    })
    });
     
  2. vcentrevkusa
    vcentrevkusa Oct 31, 2021 Banned 404 Nov 18, 2019
    cmd.on(/^(?:привет)$/i, async (message, bot) => {
    message.sendSticker(50459)
    message.user.foolder += 1;
    await bot(`Раздел команд:
    команды`, {
    attachment: 'photo-192023992_467239154',
    keyboard:JSON.stringify(
    {
    "inline": true,
    "buttons": [
    [{
    "action": {
    "type": "text",
    "payload": "{\"button\": \"2\"}",
    "label": "кнопка"
    },
    "color": "primary"

    }
    ]
    ]
    })
    })
    });
     
Loading...