Questions tagged [phpflickr]

phpFlickr is a PHP class designed to wrap and ease the usage of the API of the photo sharing site Flickr.

phpFlickr is a PHP class designed to wrap and ease the usage of the API of the photo sharing site Flickr.

38 questions
0
votes
2 answers

Get Flickr Images using php

I am trying to access flickr images using api key and secret key. After searching it i got a zip file from the link . After giving apikey and secret key in the example.php file i m getting a Warning i.e Warning: Invalid argument supplied for…
Simranjeet Kaur
  • 259
  • 1
  • 6
  • 18
0
votes
2 answers

Check if Flickr photo file url still available

I was saving photo file url for some flickr photos in my database for a while now. Lately i was getting the default image when the a file if delted or its permisions are changed. After a while i came to the conclusion that the photo still exists and…
0
votes
1 answer

How to Smooth out an Animation for jQuery Filter System

So I've been working on a filter system that allows me to display data from the Flickr API using phpFlickr as a library in CodeIgniter. I currently have it working well and is completely functional though the animation isn't where I want to have it.…
Elias Ranz
  • 401
  • 1
  • 6
  • 21
0
votes
1 answer

PHPFlickr photos_getInfo returns Error #1 "Photo not found" after upload

I'm using PHPFlickr's sync_upload method to upload photo to my Flickr photostream. Here's my code so far. $f = new phpFlickr(xxxyyyzzz, zzzyyyxxx, true); $f->setToken(aaabbbccc-dddeeefff); $f->sync_upload($path, "Nondescript description"); $photoID…
NAT3863
  • 511
  • 1
  • 5
  • 8
0
votes
1 answer

Flickr API - phpFlickr - Display private pictures with photosets_getPhotos()

I want to display Flickr private pictures on a page. I have an API + Secret. I use phpFlickr class by Dan Coulter : http://phpflickr.com I started something with David Walsh post : http://davidwalsh.name/flickr-php I set the callback URL of my API…
yoann44
  • 43
  • 1
  • 7
0
votes
1 answer

Issue when using phpflickr

I use phpFlickr (last stable version) on Windows Vista and WAMP2.0 : and I have these : Strict Standards: Assigning the return value of new by reference is deprecated in .../phpFlickr.php on line 91 Strict Standards: Assigning the return value of…
coolphp
0
votes
1 answer

Flickr link to Query with WOE-id and tags

I've made a query with the Flickr api to display pictures in a region with a WOE id and with some tags. I'm querying the flickr.photos.search method with these options: $options = array('privacy_filter'=>1, 'woe_id' => $woe, …
stUrb
  • 6,612
  • 8
  • 43
  • 71
0
votes
1 answer

phpflickr : photos_search doesn't find photos just after upload

I use the phpflickr api for a project and I have a weird problem : when I upload a photo (with sync_upload), and that I use a photo_search just after the upload, the function doesn't find the photo. I I use photo_search 5 to 10 seconds after the…
user1067832
1 2
3