Answer the question
In order to leave comments, you need to log in
How to make the vk bot work both in a conversation and in private messages?
There is a code:
bot_ls = vk_api.VkApi(token=TOKEN)
ls_longpoll = VkLongPoll(bot_ls)
for event in longpoll.listen():
for event in ls_longpoll.listen():
if event.type == VkEventType.MESSAGE_NEW and event.to_me:
bot.method('messages.send', {'user_id': event.user_id,
'message': 'Привет!',
'random_id': 0})
# === далее - отправка сообщений в беседы
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question