There is a script on the hosting
@app.route('/', methods=['POST']) def processing(): #Распаковываем json из пришедшего POST-запроса data = json.loads(request.data) #Вконтакте в своих запросах всегда отправляет поле типа if 'type' not in data.keys(): return 'not vk' if data['type'] == 'confirmation': return confirmation_token elif data['type'] == 'message_new': session = vk.Session(access_token=token_group) api = vk.API(session) ## Делаем что угодно return 'ok' So, vk duplicates requests, although the solution to the problem is to return 'ok', which I do only it does not solve the problem. What could be the snag?