Skip to content

Instantly share code, notes, and snippets.

@mattapperson
Forked from kwhinnery/app.js
Last active August 29, 2015 13:57
Show Gist options
  • Save mattapperson/9863254 to your computer and use it in GitHub Desktop.
Save mattapperson/9863254 to your computer and use it in GitHub Desktop.
var client = require('twilio')();
// Callback
client.listMessages({
to:'+16516668899'
}, function(err, data, next) {
if (err) {
console.error(err);
} else if (!next()) {
console.log('no more records for query');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment