bafoed / laravel-vkapi by bafoed

Laravel helper for performing requests to VK API
271
6
3
Package Data
Maintainer Username: bafoed
Maintainer Contact: bafoed@bafoed.ru (Anton Lempinen)
Package Create Date: 2016-02-07
Package Last Update: 2016-07-13
Language: PHP
License: MIT
Last Refreshed: 2024-05-04 15:11:24
Package Statistics
Total Downloads: 271
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 6
Total Watchers: 3
Total Forks: 3
Total Open Issues: 0

Laravel VK API class

Install

Via Composer

$ composer require bafoed/vkapi
$ php artisan vendor:publish

After updating composer, add the service provider to the providers array in config/app.php

bafoed\VKAPI\VKAPIServiceProvider::class,

Also you can add alias to the aliases array in config/app.php

'VKAPI'     => bafoed\VKAPI\Facades\VKAPI::class,

Do not forget to change access_token in config/VKAPI.php

Usage

Simple example (access_token is loaded from config/VKAPI.php)

    try {
        $result = VKAPI::call('users.get', ['user_ids' => '1,2,3']);
        foreach ($result as $user) {
            echo $user['first_name'] . ' ' . $user['last_name'] . PHP_EOL;
        }
    } catch(\bafoed\VKAPI\VKAPIException $e) {
        echo 'Something wrong: ' . $e->message;
    }

You can change access_token at runtime using setAccessToken method

VKAPI::setAccessToken('>>> INSERT TOKEN HERE <<<')

Change log

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING and CONDUCT for details.

Security

If you discover any security related issues, please email bafoed@bafoed.ru instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.