2

我们正在使用 spring-social 将我们的应用程序集成到 facebook。在 OAuth2AuthenticationService 中,范围为空。我们将范围设置为表单上的输入。但它不起作用并且无法设置范围。我们无法获得用户电子邮件。

有没有办法覆盖“OAuth2AuthenticationService”范围变量?

不是:Spring 社交版本是 1.1.0.BUILD-SNAPSHOT

我们使用了包含安全xml版本的spring social sample

            <form name="fb_signin" id="fb_signin" action="../auth/facebook"
                method="post">
                <input type="hidden" name="scope"
                    value="email,publish_stream,read_stream,offline_access" /> 
                <button type="submit"> <img src="../images/social/facebook/sign-in-with-facebook.png" /> </button>  
                <!--  
                <input
                    type="image"
                    src="../images/social/facebook/sign-in-with-facebook.png"
                    align="right" />
                --> 
            </form>
4

2 回答 2

3

在您的配置中,您需要指定scopeFacebookAuthenticationService. 这是处理调用的服务auth/facebook

在 XML 配置中,而不是:

<facebook:config app-id="${facebook.clientId}" app-secret="${facebook.clientSecret}"/>

利用:

<bean id="connectionFactoryLocator" class="org.springframework.social.security.SocialAuthenticationServiceRegistry">
    <property name="authenticationServices">
        <list>
            <bean class="org.springframework.social.facebook.security.FacebookAuthenticationService">
                <constructor-arg value="${facebook.clientId}" />
                <constructor-arg value="${facebook.clientSecret}" />
                <property name="scope" value="email" />              
            </bean>
        </list>
    </property>
</bean>

这适用于 Spring Social 1.1.0.M3

于 2013-07-20T14:27:22.097 回答
0

要将上述 XML 配置与 Spring Social 1.1.0.RELEASE 一起使用,请使用次要编辑版本:

<bean id="connectionFactoryLocator" class="org.springframework.social.security.SocialAuthenticationServiceRegistry">
    <property name="authenticationServices">
        <list>
            <bean class="org.springframework.social.facebook.security.FacebookAuthenticationService">
                <constructor-arg value="${facebook.app.id}" />
                <constructor-arg value="${facebook.app.secret}" />
                <!-- Important: The next property name changed from "scope" to "defaultScope" in 1.1.0.M4 -->
                <property name="defaultScope" value="email,user_friends" />              
            </bean>
        </list>
    </property>
</bean>

唯一不同的是在最新的 Spring Social 版本中已重命名为“defaultScope”的属性“范围”。感谢 Victor Lyuboslavsky 分享初始配置。

于 2015-01-05T19:21:30.593 回答