Skip to content

Instantly share code, notes, and snippets.

@max-mapper
Last active August 9, 2017 02:12
Show Gist options
  • Save max-mapper/95b16e2bcd4c295d77ccfd6b5615370f to your computer and use it in GitHub Desktop.
Save max-mapper/95b16e2bcd4c295d77ccfd6b5615370f to your computer and use it in GitHub Desktop.
crossref paginated works metadata streaming archiver
var request = require('request')
var base = 'https://api.crossref.org/works?filter=type:dataset&rows=1000'
doNext()
function doNext (cursor) {
if (!cursor) cursor = '*'
var url = base + '&cursor=' + cursor
console.error('GET', url)
request(url, {json: true}, function (err, resp, json) {
if (err || resp.statusCode > 299) throw err || new Error(resp.statusCode + ': ' + JSON.stringify(json))
var results = json.message.items
var next = json.message['next-cursor']
if (json.status !== 'ok') throw new Error(json)
results.forEach(function (r) {
console.log(JSON.stringify(r))
})
if (!results.length || !next) return console.error('done')
doNext(encodeURIComponent(next))
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment