私は Authy PHP ラッパー (authy-php) を使用していますが、新しいユーザーを作成しようとすると、
ユーザーパラメータを正しく渡していません
require("./vendor/autoload.php");
$authy_api = new Authy\AuthyApi('My API Key here');
$user = $authy_api->registerUser('g.******@*****.co.uk', '7***-9**-9**', '44');
if($user->ok()){
print "<pre>";
print_r($user);
print "</pre>";
}else{
foreach($user->errors() as $field => $message) {
printf("$field = $message");
}
}