Answer the question
In order to leave comments, you need to log in
Question about VK message?
In general, I have such a question, how to send messages to VK using php?
I found this on google:
function send($id , $message)
{
$url = 'https://api.vk.com/method/messages.send';
$params = array(
'user_id' => $id, // Кому отправляем
'message' => $message, // Что отправляем
'access_token' => '0000000000000000000000000000', // access_token можно вбить хардкодом, если работа будет идти из под одного юзера
'v' => '5.37',
);
// В $result вернется id отправленного сообщения
$result = file_get_contents($url, false, stream_context_create(array(
'http' => array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => http_build_query($params)
)
)));
}
Answer the question
In order to leave comments, you need to log in
Maybe I send too often? Approximately 2-4 messages in 3 minutes. Also I send to 3 users in a cycle. What am I doing wrong ?
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question