使用hwi / oauth-bundle连接到gmail

时间:2015-11-16 11:28:26

标签: symfony gmail hwioauthbundle

我正在使用hwi-oauth软件包登录社交网络帐户,但是我遇到登录gmail的问题,当我已经连接到网络时,应该直接进入系统的第一个屏幕,当连接Facebook时会发生这种情况。但是当我连接Gmail时,它总是要求允许应用程序,而不仅仅是第一次。有谁知道为什么gmail总是要求许可?这是我的系统或Gmail帐户中的设置?

1 个答案:

答案 0 :(得分:1)

尝试在资源所有者配置中将approval_prompt参数设置为auto。默认值应为force

示例:

hwi_oauth:
    firewall_name: main
    resource_owners:
        google:
            type:            google
            client_id:       xxxxxxxxxxxx.apps.googleusercontent.com
            client_secret:   vX6qyxxxxxxxxxxxxxxI6Qn7
            scope:           "https://www.googleapis.com/auth/userinfo.email https://www.googleapis.com/auth/userinfo.profile"
            options: 
                approval_prompt: auto