Я построил правильную клавиатуру
const { VK, Keyboard} = require('vk-io');
const vk = new VK({token:string,
pollingGroupId:number,
});
const { api } = vk;
api.messages.send({
message:"hi",
user_id:number,
keyboard: Keyboard.builder().callbackButton({
label:"coffe",
payload:{
command:'something',
item:'something'
},
color:'positive'
}).inline(true),
random_id:92037
})
vk.updates.on('message_event', async (ctx) =>{
console.log(ctx)
});
При нажатии на кнопку ничего не происходит, не понимаю в чем дело.