このページに関するつぶやきを取得

Codetterにもそのうち実装します。

Codetterにもそのうち実装します。

  • タグ:
  • タグはありません
<script type="text/javascript">
function topsyCallback(json) {
    res = json.response;
    if ( !res.total ) {
        return false;
    }
    html = '(' + res.total + ' tweets)';
    if ( document.getElementById('topsy_counter') ) {
        document.getElementById('topsy_counter').innerHTML = html;
    }
    html = '<ul style="list-style:none;margin:0 0 5px 0;padding:0;">';
    for ( var i=0; i<res.list.length; i++ ) {
        tweet     = res.list[i];
        thumb     = tweet.author.photo_url.replace(/(normal)\.([a-z]{3,4})$/i,'mini.$2');
        author_id = tweet.author.url.replace('http://twitter.com/','');
        html
            += '<li style="margin:0;padding:1px;font:11px/16px sans-serif;color:#333;white-space:pre;overflow:hidden;">'
            +  '<a href="'+tweet.author.url+'" target="_blank">'
            +  '<img src="'+thumb+'" alt="'+tweet.author.name+'" style="border:0;vertical-align:middle;width:24px;height:24px;" />'
            +  '</a> '
            +  '<a href="'+tweet.author.url+'" target="_blank" style="color:#0084B4;">'
            +  author_id
            +  '</a> '
            +  tweet.content.replace(/(\r\n|\r|\n)/g,'')
            +  '</li>';
    }
    html += '</ul>';
    if ( res.total > 10 ) {
        html
            += '<div>'
            +  '<a href="'+res.topsy_trackback_url+'" target="_blank" style="display:inline-block;margin:0;padding:5px;font:14px/16px sans-serif;color:#0084B4;text-decoration:none;border:1px solid #CCC;background:#EEE;-moz-border-radius:5px;-webkit-border-radius:5px;">'
            +  'もっと読む'
            +  '</a>'
            +  '</div>';
    }
    if ( document.getElementById('topsy_trackbacks') ) {
        document.getElementById('topsy_trackbacks').innerHTML = html;
    }
}

script = document.createElement('script');
script.type = 'text/javascript';
script.src  = 'http://otter.topsy.com/trackbacks.js?callback=topsyCallback&url='+encodeURIComponent(url);
document.getElementsByTagName('head')[0].appendChild(script);
</script>