Using Flickr API

There are numerous fun things you can explore with the extensive Flickr API (Application Program Interface), like requesting images based on tags. Click here for a full list of Flickr API services.

This example is a highly primitive request that doesn't require an authorization key (or API key) to work, which you can acquire here. This request does have some serious limitations, however, like only being able to randomly request an image based on the user's query. This is still a good introduction to web-based APIs and using the JSON (JavaScript Object Notation) data format.
Example of using Flickr API to pull up an image of a 'cute cat'


The code below is all that was used for the example image above. The code will take the query in the textbox (txtSearch), which in this example is 'Cute cats', as a tag to request the image, which will be finally set as the source image to be displayed (selectedImage). Of course, you can get a lot more complicated with all the APIs Flickr provides, but this is still a fun little project you can work with to extend your web stills beyond what's on your own server.

JavaScript

function searchImage() {
    var keyword = document.getElementById('txtSearch').value;
    $(document).ready(function () {

        $.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?",
                {
                    tags: keyword,
                    tagmode: "any",
                    format: "json"
                },
                function (data) {
                    var image_src = data.items[0]['media']['m'].replace("_m", "_b");
                    document.getElementById('selectedImage').src = image_src;
                    currentImg = image_src;
                });

    });
}

Comments

  1. 또한 업체 커뮤니티가 존재하여 다양한 이벤트 혜택을 받아보실수 있습니다. 모든 테이블의 게이밍 슈도 'Super Angel Eyes'로 업그레이드되어 카드의 과도를 방지하고 테이블 아래의 'Angel' 캐비닛에 바카라 사이트 카드가 보관되어 있어 보다 효율적으로 슈 교체 할 수 있다. 솔레아 리조트 & 카지노의 새로운 솔레아 클럽은 엔터테인먼트 시티에 오픈한 최초의 통합형 리조트의 중심에서 프리미엄 게스트에게 그 밖에 없는 게이밍 레저 체험을 제공하는 필리핀 최초의 시설이다. 우리는 세계적 수준의 게임 경험을 제공하는 것을 목표로하며, 도박 관련 문제와 미성년자 도박을 예방하기 위해 노력하고 있습니다.

    ReplyDelete

Post a Comment

Popular posts from this blog

Creating a Blockquote

Simple JavaScript Countdown Timer

SCAD Stylesheet Reference & Blog Intro