2

我正在尝试在 PHP 中运行 Authy 的演示。我已经用 Composer 安装了 Authy 库,所以现在我可以使用这样的硬编码值来注册用户:

$authy_api = new Authy\AuthyApi('<TESTING API KEY>', 'http://sandbox-api.authy.com'); // actual key omitted -- using the key generated for testing, not the one for production

$user = $authy_api->registerUser('something@something.com', '999-999-9999', 30); // actual credentials omitted

if($user->ok()){
    echo "Success!";
    $id = $user->id();
    echo($id);  
}

当上面的脚本运行时,确实生成了一个 5 位数的用户 ID,所以一切似乎都很顺利,但 SMS 从未发送到我的手机。

一个可能的问题可能是我的号码已经注册为应用程序电话(与管理员帐户相关联),因此(根据文档)每个电话号码都必须唯一标识一个用户,也许我的号码已经注册了这个应用程序,因此无需发送新令牌。如果是这种情况,用户对象的 id 可能是之前注册的。

但是,其他电话号码仍然存在问题。所以现在我迷路了。

4

3 回答 3

1

盖刷

有两件事导致您缺少短信。

  1. 您的代码示例仅用于用户注册。然后,您需要调用第二个 API 来发送 SMS。

https://docs.authy.com/totp.html#requesting-sms-codes

  1. 但是,上述 API 调用可能不会产生 SMS。您确实是正确的,您使用的手机号码与您的 Authy 应用程序相关联的事实默认情况下不会导致 SMS 消息。这里的想法是,因为 Authy 客户必须在 Authy 交易之上为 SMS 消息付费,所以那些使用移动应用程序的用户不需要 SMS。

但是,可以覆盖此行为。

所以你的最终代码是;

$authy_api = new Authy\AuthyApi('<TESTING API KEY>', 'http://sandbox-api.authy.com'); // actual key omitted -- using the key generated for testing, not the one for production

$user = $authy_api->registerUser('something@something.com', '999-999-9999', 30); // actual credentials omitted

if($user->ok()){  
    echo "Success!";
    $id = $user->id();
    echo($id);  

    // Now send SMS, force sending a message even if the user has the Authy mobile app installed
   $sms = $authy_api->requestSms('authy-id', array("force" => "true"));    }

西蒙

于 2015-11-02T16:54:47.073 回答
1

事实证明,代码本身没有任何问题。

只是沙盒 API 实际上并没有通过发送 SMS。它仅模拟用于测试目的的过程,因此身份验证流程与生产 API 相同。

当我切换到生产 API URL 和密钥时,我能够在手机上接收短信。

于 2015-11-07T16:01:58.070 回答
0
 $authy_api = new AuthyApi(AUTHY_API_KEY, "https://api.authy.com");
 $user = $authy_api->registerUser($email, $phone_number, $country_code);   //// Register User
 if($user->ok()) {
     $sms = $authy_api->requestSms($user->id()); //// Send SMS
     return $sms->ok();
}
于 2016-07-19T07:00:00.880 回答