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

HttpClient Angular CORS Twilio

I'm trying to do a "GET" request to Twilio API using HttpClient module import { HttpClient } from '@angular/common/http'; I'm Using Angular CLI: 6.0.8 Node: 8.11.3 OS: darwin x64 I'm testing using Firefox and Chrome, getting the same…
A. CODE
  • 11
  • 2
0
votes
1 answer

Multiple Ways Verifying Phone with Twilio's Authy

I'm confused on how exactly to verify a phone with Authy. I have a C#/MVC view that accepts a country code and phone number and I call AuthyClient.RegisterUser and that works fine. I store the AuthyId that comes back. I then call AuthyClient.SendSms…
0
votes
1 answer

Twilio Verify API: "Requested URL was not found"

I am using curl to perform a request to the Twilio Verify API, following the instructions here: https://www.twilio.com/verify/api Using these instructions, I've created two php files to perform the curl request -- one to get a verification code…
0
votes
1 answer

verify code authy with restsharp

I use the next piece of code to ask for a code to for a 2fa (two factor authentication) and works well: private async void TwilioSMS(object sender, EventArgs e) { RestSharp.RestClient client = new…
0
votes
1 answer

Authy PHP - You are not passing the user params correctly

I'm using the Authy PHP wrapper (authy-php) but when I come to creating a new user I get You are not passing the user params correctly require("./vendor/autoload.php"); $authy_api = new Authy\AuthyApi('My API Key here'); $user =…
0
votes
1 answer

Adding Verification only to rails app with Authy, Twillio and Devise

Im building out a dispatch app with Rails 5, Ruby 2.4.0 and want to incorporate Twillio for SMS Authy (only for phone verification) and Devise for user authentication. My question is following the Twillio tutorial Twillio Authy verification…
Shawn Wilson
  • 1,311
  • 14
  • 40
0
votes
1 answer

MFA not working when I have it turned on for AWS account and Amazon account

I have turned on MFA for my AWS root account but the code is always invalid. I also have a regular Amazon shopping account with MFA enabled. I can still log in when I use a code sent to my phone but not through the authenticator app (Authy). How can…
Ryan Hendry
  • 389
  • 1
  • 5
  • 16
0
votes
1 answer

Xamarin - Native Passwordless Authentication

Is it possible and does anyone have any experience of implementing Passwordless authentication on Xamarin - either with Auth0, Authy or Okta (or any other similar provider for that matter)? I am looking to implement an onboarding experience for my…
Tomás
  • 535
  • 6
  • 23
0
votes
0 answers

Set Transactional Route for twilio api

How can I set transactional route to send OTP message? I am using this: http://docs.authy.com/phone_verification.html
Simerjit Parmar
  • 808
  • 1
  • 7
  • 22
0
votes
1 answer

Rails 5.1: Post request not working correctly

In my Rails 5.1 app, I use the devise-authy gem to add 2fa to my app. With this form ... = enable_authy_form multipart: true do = text_field_tag :country_code, '', required: true, id: 'country_code', aria_required: 'true' = telephone_field…
heroxav
  • 1,387
  • 1
  • 22
  • 65
0
votes
1 answer

Sinon - How to stub authentication library (Authy -Twilio)

I am currently new to Sinon, Mocha, Supertest and in the process to writes tests. In my current scenario, i have authentication library which verifies my "OTP" and after verifying it proceeds to do operation within the callback function. I am…
Aditya Patel
  • 569
  • 1
  • 10
  • 28
0
votes
1 answer

Authy Authentication is throwing UnknownHostException

I'm trying to implement 2 phase authentication for my application using authy authentication. While trying to verify the token generated in authy mobile app m getting UnknownHostException. package tes.resource; import com.authy.*; import…
Saawan
  • 363
  • 6
  • 24
0
votes
2 answers

Twilio Authy Callback issue

I am not sure whether the success callback of Twilio Authy's register_user() is firing or not. In my code var authyUsrId; //global.authyUsrId; app.post('/forTwilio', function(req, res){ // send the received data to Twilio Authy …
somnathbm
  • 649
  • 1
  • 9
  • 19
0
votes
1 answer

Can I use Twilio Authy API inside a NodeJS HTTP response?

My app's Ionic 2 powered front-end POSTes some user data to the app's NodeJS / ExpressJS powered backend. All I want to do is to use Twilio Authy's register_user() method inside the success callback function of ExpressJS's app.post(). Front-end…
somnathbm
  • 649
  • 1
  • 9
  • 19
0
votes
1 answer

C# Authy RegisterUser fails

Here is what I've tried: https://dotnetfiddle.net/yJlQBd the value of "authyKey" = the "Api Key for Production" found on the Dashboard. When the code is run, the result: registerUserResult.Message = "Invalid API key" Any suggestions?
SED
  • 311
  • 1
  • 11