Questions tagged [authy]

Authy is a Twilio service to implement two-factor authentication. Their main service is based on Google Authenticator one-time passwords.

Website: www.twilio.com/authy, www.authy.com

Documentation: docs.authy.com

80 questions
0
votes
1 answer

Two Factor Authentication via Email in Twilio

By looking over the DOCS of Twilio, the Twilio has started two factor authentication codes to be sent in Email too. But I cannot find any implementation of this using Authy API. I am using Python, and currently sending SMS based 2FA codes to phones…
Vijay Singh Kholiya
  • 383
  • 1
  • 6
  • 19
0
votes
1 answer

Can I send 2FA token via email using Twilio's authy api?

I want to send 2-Factor Authentication token via email using Twilio's Authy api. I know Authy api offering Push Authentication, Soft token, SMS/Voice but is it also possible to send token via email? If so, then can I register the user at authy…
Milan
  • 179
  • 1
  • 8
0
votes
1 answer

Updating an Authy user's email address via the API

We are using the Authy API to initiate mobile verification codes via SMS, and during our PoC the code would attempt to register users every time a verification code is requested (so it would register, and then request the SMS). The reasoning at the…
gilweb
  • 23
  • 1
  • 5
0
votes
1 answer

Building a JWT for Twilio's Authy using Apps Script

The No-PII user registration JWT for adding a user in Twilio's authy requires us to build a JWT from scratch. I tried looking everywhere on how to get a JWT created using Google Apps Script but wasn't to find the right way to make that happen. It…
user12152243
0
votes
1 answer

Possible to get the content of sms message (including verification code) sent by authy in a test?

I have an app that sends an SMS with a verification code to users during signup. I send it by doing the following: Authy::API.request_sms(:id => user.authy_id) I was wondering if it is possible to see the exact content of this SMS (along with the…
0
votes
1 answer

Getting 429 error when working with Parse Server (Cloud Code)

I am trying to work with Authy verification; however, I am not able to work with it. I am currently using Parse Server with CloudCode to work with it, here is a snapshot of the code : Parse.Cloud.define("SendSMS", async (request) => { …
Hamza L.
  • 1,783
  • 4
  • 25
  • 47
0
votes
2 answers

How can I send verification code in email instead of sms using authy?

I am using twilio authy API with PHP for sending verification code to the user in sms where Authy handles everything generation of a new code, sending to mobile and verification using its various APIs but now I need Authy to send code in email…
0
votes
1 answer

Set custom sender id in twillio authy

I am using twillio authy and I need to set my own sender id for all. I have set code to send sms like this: $authyApi = new \Authy\AuthyApi(env('AUTH_TOKEN_TWILLIO')); $res = $authyApi->phoneVerificationStart($mobileWithPrefix, $countryCode, 'sms',…
Vivek Solanki
  • 136
  • 1
  • 13
0
votes
0 answers

Authy/Twilio OTP in Django without custom user model

I'm trying to learn how to use Authy/Twilio in a new Django app. I found this helpful demo application https://github.com/TwilioDevEd/account-security-quickstart-django which I was reading through to see how it all worked. I noticed in the…
Jeff
  • 373
  • 1
  • 6
  • 16
0
votes
1 answer

Twilio Authy and persistent tokens

I'm considering using Twilio's Authy as a one time password authentication solution for my app. I've combed through their docs and I understand how to register a new user with a phone number, and then how to verify that they indeed own that phone.…
Hash88
  • 692
  • 1
  • 6
  • 17
0
votes
1 answer

How to create Authy (twilio) applications using API?

I'm trying to figure out how to segment multiple customers in a SaaS app when using Twilio's Authy. One of the ways is to create an application per customer (with/without sub-accounts per customer/customer-group). However, to onboard customers…
Ran Biron
  • 6,317
  • 5
  • 37
  • 67
0
votes
1 answer

Automatic SMS Verification with Authy

I developped a mobile app using our backend to register and verify users using Authy. This is done by the backend in 3 steps: 1/ The app requests the backend to register the user. The backend calls https://api.authy.com/protected/json/users/new…
Dwel
  • 1
  • 1
0
votes
1 answer

How to rsync with a non-standard port and two factor 2FA authentication?

I need to rsync to a remote server using a non-standard SSH port and 2FA which I use via Authy app. The SSH works with this command: ssh -2 -p 9999 -i /Users/Me/.ssh/id_rsa user@9.9.9.9 This brings up a "Verification Code" prompt in the shell.…
Khom Nazid
  • 548
  • 1
  • 7
  • 20
0
votes
1 answer

Object data null sms still sent twilio authy

Im trying to implement the authy-node phone verification with firebase functions and my app in react-native the message is sent to the correct mobile phone but for some reason the data I get back from the api is null any ideas out there My Api…
J.lan
  • 223
  • 4
  • 17
0
votes
1 answer

How do I include my Android hash in an Authy message?

I am trying to use the Android [SMSRetriever][1] API to auto-read a token sent using Authy. However, I am unable to find out how to include a custom string (in this case, my app's Android hash) in the text that Authy will send. Is this a matter of…
Animesh
  • 1,765
  • 2
  • 22
  • 36