Free library for scanning the wall VK
PHP
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
README.md
VKStatic.class.php

README.md

VKStatic class

Free library for scanning the wall VK

Settings and start

require 'VKStatic.class.php';

try 
{
	// required parameters
	$data['access_token'] = 'token';
	
	// optinal parameters
	$data['owner_id'] = 19933;
	$data['filter'] = 'all';
	$data['v'] = '5.73';
	
	$vk = (new VKStatic($data))->wall_scan();

	echo $vk;
}
catch (\Exception $e)
{
	echo $e->getMessage();
	exit();
}

Settings

  • access_token - required parameter
  • ownder_id - optional parameter, if not specify, the token id will be used
  • filter - optional parameter, default - all (allowable values ALL or OWNER ])

The result of the script execution

The result will be given in json format. On the example of the statistics of the wall of Paul Durov

{
  "response": 
  {
    "likes": 20060612,
    "comments": 1790532,
    "reposts": 905430,
    "views": 94388476,
    "attachments": 
    {
      "count": 267,
      "type": 
      {
        "video": 4,
        "link": 29,
        "photo": 210,
        "doc": 10,
        "poll": 4,
        "photos_list": 1,
        "page": 4,
        "album": 1,
        "note": 3,
        "graffiti": 1
      }
    }
  }
}

License and Authorship

MIT license, all rights belong to the author of the code Vasily Pirajog or e-mail: wlinkin@yandex.ru

Allowed free use with copyright notice!