node-authy icon indicating copy to clipboard operation
node-authy copied to clipboard

authy.com api client for node.js

Results 5 node-authy issues
Sort by recently updated
recently updated
newest added

When I try below code in Twilio Functions, I got uuid is not defined error. So authy.send_approval_request was never run? There is no other error messages. ``` exports.handler = function(context,...

authy .phones() .verification_start( phoneNumber, "1", { via: "sms", custom_message: "Your verification code for app name" }, function (err, result) { if (err) { response.error(err.message || err.errors.message); } else { response.success(result);...

Hello, is it somehow possible to mock the functionality of the sms verification flow for e2e test? I don't want to skip the 2FA altogether during the e2e tests because...

For testing purposes.

@josh-authy In addition to the `force` parameter, it would be useful to include the optional parameters `action`, `action_message` and `locale` to the request_sms and request_voice methods.