Skip to content

Repository files navigation

ВКонтакте SDK

Latest Stable VersionBuild StatusScrutinizer Code QualityCode CoverageLicense

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 {
publicfunctionmyOwnMethod()
{
//do something
}
}
$vkService->getEntityUser(newMyUserEntitiy());
$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.

About

ВКонтакте Social Network SDK

Topics

Resources

Stars

17 stars

Watchers

8 watching

Forks

Releases

Packages

Used by

Contributors

Languages