rezzza / flickr-bundle
Flickr api wrapper
v1.0.1
2015-12-18 08:51 UTC
Requires
- php: >=5.3.3
- rezzza/flickr: 1.*
- symfony/framework-bundle: ~2.0|~3.0
This package is not auto-updated.
Last update: 2026-02-28 20:26:07 UTC
README
A simple wrapper for flickr api.
rezzza_flickr: key: 'my api key' secret: 'my api secret' # or rezzza_flickr: default_client: default clients: default: key: 'my api key' secret: 'my api secret' second: key: 'my second api key' secret: 'my second api secret'
All services from flickr are currently called with oauth security, by this way, at this moment, you can't use this bundle without oauth authentication.
$client = $this->get('rezzza_flickr.client'); $client->getMetadata()->setOauthAccess('access token', 'access token secret'); // then use it ...