[ jquery-instagram ] Instagram API を簡単に利用できる jQuery プラグインを試してみました

jquery-instagram-01

本家サイト&デモ

[ jquery-instagram ] 公式ページ ———————————————————————-

本家サイト&デモGitHub

[ jquery-instagram ] 簡単な使い方 ———————————————————————-

使い方は次のとおりです。 利用には、Instagram にアプリを登録して、Client ID を取得する必要があります。

<html><head>
        <meta charset="utf-8">
        <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
        <script src="jquery.instagram.js"></script>
        <script>
            $(function() {
                $(".instagram").instagram({
                    hash: 'love',
                    clientId: 'YOUR-CLIENT-ID-HERE'
                });
            });
        </script>
    </head>
    <body>
        <div class="instagram"></div>
    </body>

分かった事 ———————————————————————-

– ライセンスは MIT との事。 – 指定できる画像の大きさ ( image_size ) は、次のようになっていました。 – 306 x 306 – low_resolution – 150 x 150 – thumbnail – 612 x 612 – standard_resolution

参考にさせてもらったページ ———————————————————————-

Instagram API を使用し、タグで絞った画像を一覧表示する方法 | superChemical

ありがとうございます!

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です