2017 © Pedro Peláez
 

library vk

image

socialconnect/vk

  • Tuesday, November 10, 2015
  • by ovr
  • Repository
  • 7 Watchers
  • 17 Stars
  • 28 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 7 Forks
  • 0 Open issues
  • 13 Versions
  • 0 % Grown

The README.md

ВКонтакте SDK

Latest Stable Version Build Status Scrutinizer Code Quality Code Coverage License, (*1)

Library for work with VK API., (*2)

Installation

Add a requirement to your composer.json:, (*3)

{
    "require": {
        "socialconnect/vk": "~0.4"
    }
}

Run the composer installer:, (*4)

php composer.phar install

How to use

First you need to create service:, (*5)

// 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., (*6)

The Versions

10/11 2015
23/08 2015
23/08 2015

dev-scrutinizer-patch-1

dev-scrutinizer-patch-1

  Sources   Download

MIT

The Requires

 

The Development Requires

03/11 2014

0.3

0.3.0.0

  Sources   Download

MIT

The Requires

 

The Development Requires

02/11 2014

dev-support_user_entities

dev-support_user_entities

  Sources   Download

MIT

The Requires

 

The Development Requires

20/09 2014

0.2.0

0.2.0.0

  Sources   Download

MIT

The Requires

 

The Development Requires

30/08 2014
24/08 2014
22/08 2014
17/08 2014
16/08 2014
16/08 2014