반응형
[instagram] 인스타그램 feed 가져오기

 

 

클라이언트 아이디를 생성한다.   https://www.instagram.com/developer/clients/manage/

 

 

플러그인 할 javascript 다운로드 한다.  http://instafeedjs.com/ 에서 instafeed.min.js 다운로드.

 

<script type="text/javascript" src="path/to/instafeed.min.js"></script>
     

Here's how easy it is to get all images tagged with #awesome:


<script type="text/javascript">
    var feed = new Instafeed({
        get: 'tagged',
        tagName: 'awesome',
        clientId: 'YOUR_CLIENT_ID'
    });
    feed.run();
</script>
      

Instafeed.js with automatically look for a <div id="instafeed"></div> and fill it with linked thumbnails. Of course, you can easily change this behavior using the standard options. Also check out the advanced options and the section on templating for additional customization.

 

* Access Token을 받아라. : http://instagram.pixelunion.net/

 


* 참고 : http://blog.naver.com/gocathy/220334207507

반응형

+ Recent posts