Загрузка...

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

Thread in Node.js created by rla Oct 26, 2021. 314 views

  1. rla
    rla Topic starter Oct 26, 2021 Научи улыбаться 76 Oct 29, 2018
    я добавлю перед кнопками {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 405 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...
Top