Skip to content

Instantly share code, notes, and snippets.

@syuhei176
Last active November 27, 2015 06:07
Show Gist options
  • Save syuhei176/eeba0c3b5078ad0ab00a to your computer and use it in GitHub Desktop.
Save syuhei176/eeba0c3b5078ad0ab00a to your computer and use it in GitHub Desktop.
Milkcocoaで過去のメッセージを取得する。
var milkcocoa = new MilkCocoa('flagi9edsvtg.mlkcca.com')
var history = milkcocoa.dataStore('message').history();
history.sort('desc');
history.size(20);
// 2015/10/30-2015/11/10のpush()で保存したデータを取得
history.span(new Date(2015,9,30).getTime(), new Date(2015,10,10).getTime());
history.on('data', function(data) {
console.log(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment