meteor google 对公司电子邮件的服务配置限制

meteor google service-configuration restriction to company emails

我正在构建一个 Meteor 应用程序并将这些包用于 login/accounts:

accounts-base@1.3.6

账户-密码@1.4.2

帐户-google

服务配置

我这样设置服务配置:

ServiceConfiguration.configurations.upsert(
    { service: "google" },
    { $set: {
        clientId: "xxx.apps.googleusercontent.com",
        secret: "xxx"
    } }
);

是否可以限制电子邮件? 如果您在 google 注册了一家公司,并且他们有自己的电子邮件地址,例如

peter_parker@companyname.com

是否可以只允许使用来自@companyname.com的google邮件登录google?

如果是,我必须在哪里配置这些?

我在另一个线程中找到了我正在寻找的解决方案

_

不过还是非常感谢