2017 © Pedro Peláez
 

symfony-bundle wall-poster-bundle

Wall posting for social groups

image

dario_swain/wall-poster-bundle

Wall posting for social groups

  • Saturday, August 9, 2014
  • by dario_swain
  • Repository
  • 6 Watchers
  • 16 Stars
  • 547 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 6 Forks
  • 1 Open issues
  • 1 Versions
  • 3 % Grown

The README.md

WallPosterBundle

The WallPosterBundle bundle allows you to post your site news in your social groups, pages or timelines., (*1)

Installation

Add this bundle to your composer.json file:, (*2)

{
    "require": {
        "dario_swain/wall-poster-bundle": "dev-master"
    }
}

You should browse dario_swain/wall-poster-bundle page to choose a stable version to use, avoid the @stable meta constraint., (*3)

Register the bundle in app/AppKernel.php:, (*4)

// app/AppKernel.php
public function registerBundles()
{
    return array(
        // ...
        new new WallPosterBundle\WallPosterBundle(),
    );
}

Import the routing definition in routing.yml:, (*5)

# app/config/routing.yml
WallPosterBundle:
    resource: "@WallPosterBundle/Resources/routing/routing.yml"

This route (/wall-poster/captcha) used for enter captcha value if vk.com block your api requests, (*6)

Enable the bundle's configuration in app/config/config.yml:, (*7)

# app/config/config.yml
wall_poster:
    vk:
        access_token: VK_STANDALONE_APPLICATION_ACCESS_TOKEN
        group_id: VK_GROUP_ID
    facebook:
        access_token: FACEBOOK_ACCESS_TOKEN
        app_id: FACEBOOK_APPLICATION_ID
        app_secret: FACEBOOK_APPLICATION_SECRET
        page: FACEBOOK_PAGE_ID
    twitter:
        api_key: TWITTER_APP_KEY
        api_secret: TWITTER_APP_SECRET
        access_token: TWITTER_ACCESS_TOKEN
        access_secret:  TWITTER_ACCESS_TOKEN_SECRET

Usage

You can publish your posts in social networks, for use this you can use special wall-poster services., (*8)

Post

Create WallPosterBundle\Post\Post for publisher, (*9)

``` php <?php, (*10)

namespace Your\Namespace;, (*11)

use WallPosterBundle\Post\Post;, (*12)

class YourController extends Controller { public function updateAction() { /** Create you Post instance / $post = new Post(); / Add image to post, you can provide absolute path for your local file and browser url to file / $post->createImage('/var/www/images/test.jpg','http://your_site.com/images/test.jpg') / Add link to post / ->createLink('http://your_site.com/about') / Add social tags / ->addTag('about') ->addTag('your_site') ->addTag('follow_me') / Add message to your post **/ ->setMessage('Hello world!'); } }, (*13)


After creation Post instance you can publish it with social network providers. ### Social network providers The bundle provide an `wall_poster.vk`, `wall_poster.facebook` and `wall_poster.twitter` services, after Post creation: ``` php <?php namespace Your\Namespace; use WallPosterBundle\Post\Post; class YourController extends Controller { public function updateAction() { /** Create you Post instance **/ $post = new Post(); /** ... **/ $provider = $this->get('wall_poster.vk'); try { $post = $provider->publish($post); } catch(Exception $ex) { //Handle errors } } }

The Versions

09/08 2014

dev-master

9999999-dev https://github.com/DarioSwain/WallPosterBundle

Wall posting for social groups

  Sources   Download

MIT

The Requires

 

social bundle vk facebook twitter post wall