alxmsl / vkontakteclient
Simple client for Vkontakte API
Installs: 260
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 4
Open Issues: 0
pkg:composer/alxmsl/vkontakteclient
Requires
- alxmsl/network: >=1.1.0
This package is not auto-updated.
Last update: 2025-10-11 21:38:18 UTC
README
Simple client for Vkontakte API
Installation
Require packet in a composer.json
"alxmsl/vkontakteclient": ">=1.0.0"
Run Composer: php composer.phar install
Non-secure method call example
// Create API client
$Client = new \Vkontakte\Client\API\Client();
// Non-secure method call
$Result = $Client->callNotSecure('users.get', array(
'user_ids' => '5103,15380059',
));
// Show result
var_dump($Result);
License
Copyright © 2014 Alexey Maslov alexey.y.maslov@gmail.com This work is free. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See the COPYING file for more details.