JSONPを使用したTweet数取得

by iwbjp

HTML

<div id="topPopularity_app-ianki"><span class="count"></span></div>

JavaScript

//JSONPを使用したTweet数取得
function count_twitter(url, counterId) {
    $.ajax({
        url: "http://urls.api.twitter.com/1/urls/count.json",
        dataType: "jsonp",
        data:{
            url: url
        },
        success: function(res){
            $("#" + counterId).find(".count").text( res.count || 0 );
        },
        error: function(){
            $("#" + counterId).find(".count").text("取得できませんでした");
        }
    });
}
count_twitter(
	"http://iwb.jp/app-ianki/", 
	"topPopularity_app-ianki"
);