반응형
[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/
반응형
'프로그래밍 > Script' 카테고리의 다른 글
[javascript] OFFLINE & STORAGE (0) | 2016.09.23 |
---|---|
[javascript] 2048 게임 (0) | 2016.09.23 |
카카오톡 링크 공유하기 레퍼런스 (0) | 2016.09.05 |
[javascript] datediff 구현 (0) | 2016.08.19 |
[javascript] Howler.js: Audio library for the modern web (0) | 2016.07.29 |