PHP code example of mggflow / vk-api

1. Go to this page and download the library: Download mggflow/vk-api library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mggflow / vk-api example snippets


$token = "...access_token....";
$apiVersion = 5.131;
// Создаём объект АПИ для определённого токена и версии.
$api = new API($token, $apiVersion);
// Отправляем запрос к АПИ ВК, указывая, что даём 3 попытки для успешного получения ответа с возможностью ожидания.
$users = $api->users->get()->explore(true,3,true);
// Если запрос будет неудачным, вернёт false, иначе блок response.
var_dump($users);