ushios / tumblr-bundle
Symfony TumblrBundle
Installs: 612
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.2
- tumblr/tumblr: 0.*
This package is not auto-updated.
Last update: 2024-12-16 16:40:58 UTC
README
Create tumblr client using 'config.yml'
Installation
composer.json
# composer.json
"require": {
"ushios/tumblr-bundle": "0.0.*"
...
}
and run composer update
command.
AppKernel.php
# app/AppKernel.php
public function registerBundles()
{
bundles = array(
// ...
new Ushios\Bundle\TumblrBundle\UshiosTumblrBundle(),
);
retrun bundles();
}
Configuration
config.yml
# app/config/config.php
ushios_tumblr:
client:
default:
consumerKey: ${YOUR_CONSUMER_KEY}
consumerSecret: ${YOUR_CONSUMER_SECRET}
named:
class: Your\Tumblr|Client # default Tumblr\API\Client
consumerKey: ${YOUR_NAMED_CONSUMER_KEY}
consumerSecret: ${YOUR_NAMED_CONSUMER_SECRET}
token: ${YOUR_NAMED_TOKEN} // optional
tokenSecret: ${YOUR_NAMED_TOKEN_SECRET} // optional
Usage
Get client from service.
Using default settings tumblr client.
# Bundle/Controller/Controller.php
public function fooAction()
{
$tumblr = $this->container->get('ushios_tumblr_client');
// or
$tumblr = $this->container->get('ushios_tumblr_client.default');
}
Using named settings.
# Bundle/Controller/Controller.php
public function fooAction()
{
$tumblr = $this->container->get('ushios_tumblr_client.named');
get_class($aws); // Your\Tumblr\Client
}