Skip to content

Instantly share code, notes, and snippets.

@bttmly
Created March 4, 2014 19:36
Show Gist options
  • Save bttmly/9353950 to your computer and use it in GitHub Desktop.
Save bttmly/9353950 to your computer and use it in GitHub Desktop.
var Tok3n = require('tok3n').Tok3n,
tok3n = new Tok3n('yourPrivateKey',
userKey,
req.body.tok3nOtpField);
tok3n.verify(function(success, error_code) {
if (success) {
// Successful verification
}
else {
// Failed verification
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment