Opensocial Hostの履歴

すぐにmixiアプリが作成できる。すごい!!
http://opensocialhost.com/

opensocial-jqueryでdeffered化する

var appKey = '...';
function getValue(res){
  var json = $.evalJSON(res);
  if (json.data && json.data[0]){
    return json.data[0].value;
  }else{
    return null;
  }
}

function getOne(key){
  var data = { application_key: appKey, key1: key };
  return $.post('http://opensocialhost.com/data/select signed', data)
    .next(getValue);
};

getOne('mykey').next(function(value){
  alert(value) // myvalue!
});