twilio-phone-verification
Version:
twilio phone verification
13 lines (8 loc) • 354 B
JavaScript
let { Verification } = require ('../build');;
let verify = new Verification('rUgUShRbnz0vTD14jA4ofzD7TmGw6hXe');
// verify.sendVerification('0545247030', '233', 4)
// .then(res => console.log(res))
// .catch(err => console.log(err))
verify.checkVerification('3432','0545247030', '233')
.then(res => console.log(res))
.catch(err => console.log(err))