xrow / ezpublish-twitterimport-bundle
Delivers an importer for twitter.
Installs: 4 323
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 14
Forks: 2
Open Issues: 0
Type:import
Requires
- php: >=5.3.0
- guzzle/guzzle: ~3.7
This package is auto-updated.
Last update: 2024-11-16 03:20:56 UTC
README
Delivers an importer for twitter.
Installation
-
To install XrowTwitterImportBundle with Composer just add the following to your
composer.json
file:// composer.json { //... "require":{ // ... "xrow/ezpublish-twitterimport-bundle": "dev-master" } }
Then, you can install the new dependencies by running Composer's
update
command from the directory where yourcomposer.json
file is located:$ php composer.phar update
Now, Composer will automatically download all required files, and install them for you.
-
You can configure the baseurl, consumer_key, consumer_secret, token and token_secret in your twitter.conf.yml. Examples:
// ezpublish/config/twitter.conf.yml parameters: twitter.baseurl: https://api.twitter.com/1.1 twitter.config: consumer_key: xxxxxxxxxxxxxx consumer_secret: xxxxxxxxxxxxxxxxxxxxxxx token: xxxxxxxxxxxxxxxxxxxxxx token_secret: xxxxxxxxxxxxxxxxxxxxxxx
-
Import
twitter.conf.yml
inezpublish/config/ezpublish.yml
by adding:imports: - { resource: twitter.conf.yml } parameters: import.user.config: import_user: xxxx(username)<-- If not given or empty, then the username defaults to 'admin'
-
Register
EzPublishTwitterImportBundle
inezpublish/ezPublishKernel.php
by adding this line to$bundles
inregisterBundles()
method:new xrow\EzPublishTwitterImportBundle\XrowTwitterImportBundle(),