blob: 8c87b2dd38c9d2bd3bd3a46ec69a9c6d7bce55ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
var argv = require('minimist')(process.argv.slice(2))
if (typeof argv.u !== 'string') {
console.log('username must be specified (-u ugnich)')
process.exit(1)
}
var messages = []
function getBlogData(blogUrl, callback) {
fetch(blogUrl)
.then(function(res) {
return res.json()
})
.then(function(msgs) {
msgs.forEach(function(message) {
messages.push(message)
})
if (msgs.length == 20) {
blog.searchParams.set('before_mid', msgs.slice(-1).pop().mid)
setTimeout(getBlogData, 1000, blog, callback)
} else {
callback()
}
})
.catch(console.error)
}
var blog = new URL('https://api.juick.com/messages')
blog.searchParams.append('uname', argv.u)
getBlogData(blog, function() {
console.log(JSON.stringify(messages))
})
|