0.4
2015-08-23 14:47 UTC
Requires
- php: >=5.4
- ext-json: *
- socialconnect/common: ~0.5
Requires (Dev)
- brianium/paratest: ~0.12.3
- phpunit/phpunit: ~4.0
- squizlabs/php_codesniffer: ~2.3.3
This package is auto-updated.
Last update: 2024-10-08 18:48:01 UTC
README
Library for work with VK API.
Installation
Add a requirement to your composer.json
:
{ "require": { "socialconnect/vk": "~0.4" } }
Run the composer installer:
php composer.phar install
How to use
First you need to create service:
// Your Vk Application Settings $appId = 123456; $appSecret = 'secret'; $vkService = new \SocialConnect\Vk\Client($appId, $appSecret); $vkService->setHttpClient(new \SocialConnect\Common\Http\Client\Curl());
Get user with specified $id:
$user = $vkService->getUser(1); var_dump($user);
Get users with specified array $ids:
$users = $vkService->getUsers([1, 2]); var_dump($users);
Customs methods
$parameters = []; $result = $vkService->request('method/CustomMethod', $parameters); if ($result) { var_dump($result); }
Custom entities
class MyUserEntitiy extends \SocialConnect\Vk\Entity\User { public function myOwnMethod() { //do something } } $vkService->getEntityUser(new MyUserEntitiy()); $user = $vkService->getUser(1); if ($user) { $user->myOwnMethod(); }
License
This project is open-sourced software licensed under the MIT License. See the LICENSE file for more information.