Firebase Auth - >使用signInWithCustomToken创建的用户没有电子邮件地址

时间:2017-02-04 10:53:03

标签: php firebase firebase-authentication jwt

我正在为使用Ionic制作的移动应用程序使用Firebase自定义身份验证系统,我使用Laravel 5.2作为自定义Auth后端。

当新用户注册时,我在laravel中生成一个令牌(使用firebase / php-jwt)并将其返回到移动应用程序。

在此注册过程中,应用程序会收到令牌并使用以下代码在firebase上创建用户:

firebase.auth().signInWithCustomToken($auth.getToken())
    .then(function(response) {
        $log.debug(response);
    })
    .catch(function(error) {
        $log.debug(error.code + ' - ' + error.message);
    });

在后端,我使用下面的代码生成令牌:

private function create_custom_token($uid, $email, $is_premium_account) {
    $service_account_email = env('SERVICE_ACCOUNT_EMAIL'); 
    $private_key = env('SERVICE_PRIVATE_KEY');

    $now_seconds = time();
    $payload = array(
        "iss" => $service_account_email,
        "sub" => $service_account_email,
        "aud" => "https://identitytoolkit.googleapis.com/google.identity.identitytoolkit.v1.IdentityToolkit",
        "iat" => $now_seconds,
        "exp" => $now_seconds+(60*60),  // Maximum expiration time is one hour
        "uid" => $uid,
        "claims" => array(
            "premium_account" => $is_premium_account,
            "email" => $email,
        )
    );
    return JWT::encode($payload, $private_key, "RS256");
}

如下图所示,用户是在firebase上生成的,但问题是它没有电子邮件地址,只有UID。

enter image description here

拥有电子邮件地址以便轻松识别用户会更好。

也许有人可以帮忙。谢谢!

更新

我为create_custom_token函数改变了一点$ payload:

  $payload = array(
      "iss" => $service_account_email,
      "sub" => $service_account_email,
      "aud" => "https://identitytoolkit.googleapis.com/google.identity.identitytoolkit.v1.IdentityToolkit",
      "iat" => $now_seconds,
      "exp" => $now_seconds+(60*60),  // Maximum expiration time is one hour
      "uid" => $uid,
      "email" => $email,
      "email_verified"          => false,
      "claims" => array(
        "premium_account" => $is_premium_account,
        "email" => $email,
        "email_verified"          => false,
      )
    );

我还做了一些测试,看到传递给firebase的令牌包含所有需要的数据。我在我的后端使用相同的库(firabase / php-jwt)解码了编码的令牌,并且接缝没问题但是firebase仍然创建没有电子邮件地址的用户。

enter image description here

我不知道我错过了什么:(

1 个答案:

答案 0 :(得分:5)

我不认为自定义令牌可以这样做。

node.js Admin SDK允许您创建/ updateUser并为该用户创建自定义令牌。这将是理想的方式,但是当你使用php时,我推荐以下解决方案:

您必须使用客户端js库设置电子邮件:

  • 在制作自定义令牌后,将其与电子邮件一起发送给客户端应用。无论如何你已经发送了它,只需随身携带电子邮件。
  • 在客户端应用程序中,signInWIthCustomToken和用户使用提供的电子邮件返回updateEmail,如下所示:

    firebase.auth().signInWithCustomToken(token)
      .then(function(u‌​ser) {
        return user.updateEmail(email);
      }).catch(...)