$data = json_decode(file_get_contents('php://input'));
$attchType = $data->object->attachments[0]->type;
if ($data->type == 'message_new') {
if($attchType == 'audio_message') {
//Как скачать полученное сообщение?
}
}
if($attachType == 'audio_message') {
file_put_contents('audiomsg.ogg', file_get_contents($data->object->attachments[0]->audio_message->link_ogg));
}