2017 © Pedro Peláez
 

library vkontakte-wall-posting

A class for posting to Vkontakte public pages & groups

image

kristobaljunta/vkontakte-wall-posting

A class for posting to Vkontakte public pages & groups

  • Wednesday, July 4, 2018
  • by kristobaljunta
  • Repository
  • 1 Watchers
  • 1 Stars
  • 36 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 41 Forks
  • 0 Open issues
  • 7 Versions
  • 16 % Grown

The README.md

vkontakte-wall-posting

Vkontakte Wall Posting, (*1)

A class for posting to Vkontakte public pages & groups, (*2)

require_once('../vendor/autoload.php');

use KristobalJunta\Vkontakte;

$accessToken = 'your access token';
$publicID = 'your public ID here';
$vkAPI = new Vkontakte(['access_token' => $accessToken]);

$attachments = [
    'images' => [
        # attaching image by url
        [
            'type' => 'image',
            'url' => 'image-link'
        ],
        # attaching image by full file path
        [
            'type' => 'image',
            'path' => '/full/path/to/image'
        ]
    ]
    # attaching link (there can be only one)
    'link' => 'link-url'
];

if ($vkAPI->postToPublic($publicID, "Hello world", $attachments, ['#вконтакте api', '#автопостинг', '#первые шаги'])) {
    echo "Yeah, success!\n";
} else {
    echo "Error publishing post\n";
}

The Versions

04/07 2018

dev-master

9999999-dev

A class for posting to Vkontakte public pages & groups

  Sources   Download

WTFPL

The Requires

  • php >=5.3.0
  • ext-curl *
  • ext-json *

 

by Kristobal

04/07 2018

v1.1.4

1.1.4.0

A class for posting to Vkontakte public pages & groups

  Sources   Download

WTFPL

The Requires

  • php >=5.3.0
  • ext-curl *
  • ext-json *

 

by Kristobal

03/07 2018

v1.1.3

1.1.3.0

A class for posting to Vkontakte public pages & groups

  Sources   Download

WTFPL

The Requires

  • php >=5.3.0
  • ext-curl *
  • ext-json *

 

by Kristobal

03/07 2018

v1.1.2

1.1.2.0

A class for posting to Vkontakte public pages & groups

  Sources   Download

WTFPL

The Requires

  • php >=5.3.0
  • ext-curl *
  • ext-json *

 

by Kristobal

11/09 2016

v1.1.1

1.1.1.0

A class for posting to Vkontakte public pages & groups

  Sources   Download

WTFPL

The Requires

  • php >=5.3.0
  • ext-curl *
  • ext-json *

 

by Kristobal

14/04 2016

v1.1.0

1.1.0.0

A class for posting to Vkontakte public pages & groups

  Sources   Download

WTFPL

The Requires

  • php >=5.3.0
  • ext-curl *
  • ext-json *

 

by Kristobal

24/01 2014

v1.0.0

1.0.0.0 https://github.com/bocharsky-bw/vkontakte-php-sdk

Vkontakte PHP SDK

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-curl *
  • ext-json *

 

sdk vkontakte