Skip to content

Commit

Permalink
Version 5.101.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Teamcity Build Agent committed Aug 21, 2019
1 parent 9fb867b commit 1f81fc6
Show file tree
Hide file tree
Showing 15 changed files with 706 additions and 73 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

PHP library for VK API interaction, includes OAuth 2.0 authorization and API methods. Full VK API features documentation can be found [here](http://vk.com/dev).

This library has been created using the VK API JSON Schema. It can be found [here](https://github.com/VKCOM/vk-api-schema). It uses VK API [version](https://vk.com/dev/versions) 5.100
This library has been created using the VK API JSON Schema. It can be found [here](https://github.com/VKCOM/vk-api-schema). It uses VK API [version](https://vk.com/dev/versions) 5.101

[![Packagist](https://img.shields.io/packagist/v/vkcom/vk-php-sdk.svg)](https://packagist.org/packages/vkcom/vk-php-sdk)

Expand All @@ -29,11 +29,11 @@ $vk = new VK\Client\VKApiClient();
Also you can initialize `VKApiClient` with different API version and different language like this:

```php
$vk = new VKApiClient('5.100');
$vk = new VKApiClient('5.101');
```

```php
$vk = new VKApiClient('5.100', VK\Client\Enums\VKLanguage::ENGLISH);
$vk = new VKApiClient('5.101', VK\Client\Enums\VKLanguage::ENGLISH);
```

## 4. Authorization
Expand Down
2 changes: 1 addition & 1 deletion src/VK/Actions/Ads.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public function createClients($access_token, array $params = []) {
* - @var integer account_id: Advertising account ID.
* - @var integer client_id: 'Only for advertising agencies.', ID of the client with the advertising account where the group will be created.
* - @var string name: Name of the target group — a string up to 64 characters long.
* - @var integer lifetime: 'For groups with auditory created with pixel code only.', , Number of days after that users will be automatically removed from the group. '0' — not to remove users.
* - @var integer lifetime: 'For groups with auditory created with pixel code only.', , Number of days after that users will be automatically removed from the group.
* - @var integer target_pixel_id
* - @var string target_pixel_rules
* @throws VKClientException
Expand Down
Loading

0 comments on commit 1f81fc6

Please sign in to comment.