Skip to content

Instantly share code, notes, and snippets.

@octatone
Created October 26, 2014 10:03
Show Gist options
  • Save octatone/7853fec580c12754969e to your computer and use it in GitHub Desktop.
Save octatone/7853fec580c12754969e to your computer and use it in GitHub Desktop.
Fetch 6w tweets using a generator
function *get6wTweets () {
let options = {
'auth': {
'bearer': yield getToken
}
},
response = yield get(searchUrl, options);
return parse(response.body).statuses;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment