hinablue / rezzza-flickr
Flickr API Wrapper modified by Hina Chen.
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 15
Type:standalone
pkg:composer/hinablue/rezzza-flickr
Requires
- php: >=5.3.2
Requires (Dev)
- guzzle/http: 3.*
Suggests
- guzzle/http: Guzzle Adapter for http requests
This package is not auto-updated.
Last update: 2025-10-07 10:53:14 UTC
README
$metadata = new Rezzza\Flickr\Metadata('api key', 'secret'); $metadata->setOauthAccess('access token', 'access token secret'); $factory = new Rezzza\Flickr\ApiFactory($metadata, new Rezzza\Flickr\Http\GuzzleAdapter()); $json = $factory->call('flickr.test.login'); $json = $factory->call('flickr.photos.getInfo', array( 'photo_id' => 1337, )); $factory->upload('path/to/photo.png', 'my title');