dev-master
9999999-dev https://github.com/DarioSwain/WallPosterBundleWall posting for social groups
MIT
The Requires
- symfony/symfony 2.*
- facebook/php-sdk-v4 4.0.*
- php >=5.3.2
- ext-curl *
- dg/twitter-php 3.3
social bundle vk facebook twitter post wall
Wallogit.com
2017 © Pedro Peláez
Wall posting for social groups
The WallPosterBundle bundle allows you to post your site news in your social groups, pages or timelines., (*1)
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
You can publish your posts in social networks, for use this you can use special wall-poster services., (*8)
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 } } }
Wall posting for social groups
MIT
social bundle vk facebook twitter post wall