使用Google(HWIOAuthBundle)将登录电子邮件限制为Symfony中的特定域

时间:2015-07-22 16:10:08

标签: symfony hwioauthbundle

如何在symfony2(hd参数)中从 HWIOAuthBundle 限制登录Google到特定域。 ¿我在哪里可以写出来?

Documentation

由于

1 个答案:

答案 0 :(得分:1)

您可以在资源所有者的options参数中编写它。 E.g:

# config.yml
resource_owners:
    google:
        type:                google
        client_id:           "%google_client_id%"
        client_secret:       "%google_client_secret%"
        scope:               "email profile"
        options:
            hd:              "yourdomain.com"
            access_type:     offline

正如本期所述: https://github.com/hwi/HWIOAuthBundle/issues/216