flickr

Slimbox 2 Plugin, jQuery Flickr, and IE8

Hello, I am currently developing a site that I make use of two jQuery plugins: jQuery Flickr plugin jQuery Slimbox plugin The first plugin is used to pull in flickr photos from a specific account. These photos are displayed as thumbnails on the page. I am then using the second plugin to display larger views of these images. Because...

jQuery $.getJSON - How do I parse a flickr.photos.search REST API call?

Trying to adapt the $.getJSON Flickr example: $.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&amp;tagmode=any&amp;format=json&amp;jsoncallback=?", function(data){ $.each(data.items, function(i,item){ $("<img/>").attr("src", item.media.m).appendTo("#images"); if ( i == 3 ) return false; ...

flickr api advice

Hi There, I am working with the API from flickr trying to get my photosets into my site, my problem is I am wanting to only show the primary image for each set but current it is showing all the images from each of my sets. Can anyone see where I am going wrong? <?php $f = new phpFlickr(FLICKR_API_KEY); $f->enablecache("fs", $...

Using phpFlickr, how would one display the primary photo from each photoset?

Referring to this question: http://stackoverflow.com/questions/2561475/flickr-phpflickr-api how would you display a primary photo from a photoset rather than all photos and photosets? this is the code I have so far: <?php require_once("phpFlickr/phpFlickr.php"); $f = new phpFlickr("[APIKEY]"); $user = "xxxxxxxx@xxx"; $count = 1; $phot...

YQL and FLickr query not understood in the console

Hello, So I am trying to use YQL to access the flickr api but I have been having some issues. From reading the YQL info, it seemed like I could use any flickr query in YQL but for some reason I cannot use flickr.people.getPublicPhotos call to access all pictures from a certain person. When I try any such query it isn't recognized. Is th...

ObjectiveFlickr - how to call getSizes on a photo ID not known until the response?

Hi guys, I'm building a free music instrument iPhone app with the Flickr API and ObjectiveFlickr.A random photo from the interestingness list is displayed in the background, but I can't center it without knowing its size. (so I can reset the UIWebView frame) I've been researching this for awhile, and if the answer is super easy, please...

increase number of photos from flickr using json

Hi this is my code: Is is possible to get more photos from flickr. What is the standard / default number? $(document).ready(function(){ $.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?id=48719970@N07&amp;lang=en-us&amp;format=json&amp;jsoncallback=?", function(data){ $.each(data.items, function(i, item){ ...

Decode json string returned from Flickr API using PHP, curl

Im trying to decode a json string returned from flickr within my PHP code. Im using CURL but it keeps returning a string even when I wrap json_decode() around the json sring variable. Any ideas? $api_key = '####'; $photoset_id = '###'; $query = 'http://api.flickr.com/services/rest/?&amp;method=flickr.photosets.getPhotos&amp;api_key='.$...

Get image from Flickr using django-syncr

Hello guys, I have my photos located on Flickr. I want to sync them between Flickr and my Django app using django-syncr. It's installed, Flickr section is visible in Admin site. I can sync photo data from Flickr to my local database. In a few words -- it works. But, I don't understand how to get these data from my database using views.py...

Which is better, save a website images on Amazon S3, Flickr or Picasa?

I have a website and going to extend it, so users will upload their images on this website, i want to save users images in another storage service. Users will save images and view them, and also share with others. I know that i can do that using Amazon S3, Flickr or Picasa. But i want to know which is better than which? which one shou...

Does Flickr "Know" if a Hotlinked Image Does Not Link Back to Source?

From Flickr's community guidelines: "Do link back to Flickr when you post your photos elsewhere. The Flickr service makes it possible to post images hosted on Flickr to outside web sites. However, pages on other web sites that display images hosted on flickr.com must provide a link from each photo back to its photo page on Flickr." Our...

Flicker API issues, set_id

Hi! Can somebody suggest me , why set_id doesn't work properly for Flicker API object call. IN slideshow it works very well, it selects just images from this set http://www.flickr.com/slideShow/index.gne?group_id=&amp;user_id=26339121@N07&amp;set_id=72157623827367793&amp;tags=Cars,Lotus,Exige but when I tru to use this one : http...

"No architectures" error when compiling objective flickr for iphone device

I'm getting the following error when I attempt to compile my XCode project to debug on my device. No architectures to compile for (ARCHS=x86_64, VALID_ARCHS=armv6 armv7). I've included ObjectiveFlickr in my project just as the readme describes. I've gone through the process several times and redownloaded objectiveFlickr a few times t...

Free server solution for strict content photos with geotags

Hi! I would like to create some kind of open free "group" posting of photos with geotags First I thought about Panoramio, but seems there is no API for photos upload. By now I can see only two ways: Flickr - there are groups but you have to approve group membership anyway, or use tags for grouping which is bad for maintenance Cust...

Get Flickr Sets

Hi everyone. Usual stuff, Googled forever, looked on here, no help. Yet. What I want is to list the sets of photos I have on Flickr. Nice & simple, it would seem. I want the 'title image' (the one used as the thumb for it on Flickr its self), the title and URL. Can't be that hard, can it? The language of choice is PHP (5.1.6), or JS (...

using variable in DATA of getJASON Callback function

Hi, My problem is manage the code which get the tag and use is as variable (var searchterm= ??????). With JSON I want first get the "location" tags with tagthe and show the relate photos from flickr. <!DOCTYPE html> <html> <head> <style>img{ height: 100px; float: left; }</style> <script src="http://code.jquery.com/jquery-latest.mi...

Flickr albums in django admin

I want to do the following: Having a model (p.e. a model which handles data about photographic reports) create a section which has a preview of an specific flickr album. The URL will be provided by an URLField (until the first save the preview will not be available). After the first save, it'll show previews of all the images inside th...

Ruby library for Flickr API?

Is there a solid, production ready library in Ruby that interacts with the Flickr API? I found a few by googing, but their states don't impress me much. I'm looking for something along the lines of flickrapi for Python, with nice documentation. ...

Is there any Flickr Image search API for ActionScript\MXML developers?

Is there any Flickr Image search API for ActionScript\MXML developers? (if special keys are not needed for using it will be big +) ...

adding flickr pictures to android gallery and display it

Hi, I am new to android, I have learned how to display drawable pic in gallery, and display a url pic use ImageView. Now I dont know how to display online pictures in gallery. Should I use listview or not? In addtion, I want to know how to get pictures urls from flickrs with given userid ...