Advertisement
Guest User

Untitled

a guest
Apr 6th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. require __DIR__ . '/vendor/autoload.php';
  4.  
  5. $vk = new VK\Client\VKApiClient();
  6. $access_token = '73ff20212c7cc1e16f1e767c20b1bc3e45fcc5f615242c88ceab264b3d91cc89f6e1ade206f84231db47b';
  7.  
  8. $response = $vk->users()->get($access_token, array(
  9.     'user_ids' => array(1, 210700286),
  10.     'fields' => array('city', 'photo'),
  11. ));
  12.  
  13. print_r($response);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement