phpflickr icon indicating copy to clipboard operation
phpflickr copied to clipboard

A PHP wrapper for the Flickr API, including OAuth.

Results 22 phpflickr issues
Sort by recently updated
recently updated
newest added

Hi Thank you for maintaining this class... I am new to it but making progress everyday! I successfully implement the oAuth to get an access token & secret based on...

https://github.com/samwilson/phpflickr/blob/2e7ca259107d67cfb27da362653b9872e22d8d40/src/PhotosApi.php#L97 https://www.flickr.com/services/api/flickr.photos.getAllContexts.html

Feature request

See `.phan/baseline.php` for the current list.

Bug

When downloading a photo which doesn't have an original size available, buildPhotoURL() should return false. Also, we should add some sort of 'max available' size, because that's usually what we're...

Bug

I've used this fork to replace the outdated version of phpFlickr that was coded into flogr (https://github.com/mcarruth/flogr) and it seems to work really well - thank you for all of...

question

$flickr->uploader()->replace('/path/to/photo.jpg', 44333812150); Should probably go to /** @var string */ protected $replaceEndpoint = 'https://up.flickr.com/services/replace/'; Instead, it goes to the upload endpoint /** @var string */ protected $uploadEndpoint = 'https://up.flickr.com/services/upload/'; I...

Starting in PHP 8.2, dynamic properties were deprecated. We should declare it in the class.

This library could take advantage of some of the goodies in PHP 8 by dropping support for PHP 7. You could tag this as version 1 (for BC), then use...