未设置 Firebase 自定义用户声明

Firebase custom user claims are not set

我正在尝试在用户注册后添加自定义用户声明,以定义用户角色,使用 setCustomUserClaims:

/api/users/addUser.js

export default async (req, res) => {
  const { displayName, email, password, role } = req.body;

  if (!displayName || !password || !email || !role) {
    return res.status(400).send({ message: 'Missing fields' });
  }

  try {
    const { uid } = await admin.auth().createUser({
      displayName,
      email,
      password,
    });
    await admin.auth().setCustomUserClaims(uid, role);
    res.status(201).send(uid);
  } catch (error) {
    handleError(res, error);
  }
};

此代码检查身份验证状态是否有任何更改,并将 user 设置为当前登录的用户:

/utils/use-auth.js

useEffect(() => {
    const unsubscribe = firebase.auth().onAuthStateChanged((user) => {
      if (user) {
        setUser(user);
      } else {
        setUser(false);
        // Router.push('/login');
      }
    });

在我的 /pages/user/home,jsx:

import { useAuth } from '../../utils/use-auth';

function home() {
  const { user } = useAuth();

  return (
    <div>
      <pre>{JSON.stringify(user, null, 4)}</pre>
        <AdminLayout componentProps={{ selected: '1' }} Component={HomeContent} />
    </div>
  );
}

显示的对象没有任何自定义声明。 当我查看 firebase 控制台时,我发现用户确实被添加了。

尝试使用

admin.auth().setCustomUserClaims(uid, claims).then(() => {
// Do your stuff here
});

并核实声明

admin.auth().verifyIdToken(idToken).then((claims) => {
// check claims
  if (claims) { 
  // do your stuff here
  }
});

查看更多信息https://firebase.google.com/docs/auth/admin/custom-claims#node.js