如何从命令行设置Firebase自定义声明?

时间:2020-05-21 16:37:57

标签: node.js firebase firebase-authentication firebase-admin

人们以前也曾研究过类似的问题,但我能找到的最新时间是2018年。

如何使用终端在Firebase中设置自定义声明?

我想执行一个脚本,该脚本将具有指定电子邮件的用户设置为管理员。

脚本为:

const admin = require('firebase-admin');
admin.initializeApp()

const adminEmails = [
    "test1@test.com",
    "test2@test.com",
    "test3@test.com"
]

for (let adminEmail of adminEmails) {
    admin.auth().getUserByEmail(adminEmail)
    .then(function(userRecord) {
      // See the UserRecord reference doc for the contents of userRecord.
      console.log('Successfully fetched user data:', userRecord.toJSON());
      admin.auth().setCustomUserClaims(userRecord.uid, {admin: true}).then(() => {
          // The new custom claims will propagate to the user's ID token the
          // next time a new one is issued.
        });
    })
    .catch(function(error) {
     console.log('Error fetching user data:', error);
    });
}

当我在节点上运行该证书时,我得到的凭据无效-如何从命令行进行身份验证,并且可以运行一个脚本来创建这样的自定义声明?

1 个答案:

答案 0 :(得分:1)

该错误消息表明,您需要将具有服务帐户凭据的对象传递给initializeApp()才能配置Admin SDK,或设置GOOGLE_APPLICATION_CREDENTIALS env var,如documentation中所述