PHP code example of voyanara / avito-laravel-client
1. Go to this page and download the library: Download voyanara/avito-laravel-client library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
voyanara / avito-laravel-client example snippets
public function action(AvitoClient $client)
{
$client::messenger()->getChats();
//or
AvitoClient::user()->self();
}
use Voyanara\LaravelApiClient\Application\Facades\AvitoClientFacade as AvitoClient;
use Voyanara\LaravelApiClient\Application\Facades\Client;
public function action(Client $client)
{
$client->messenger()->getChats();
//or
$client->user()->getBalance();
$client->user()->getOperationsHistory();
}