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 = $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");
}
}