在同一个程序中,我使用Spring-social facebook和Spring Social linkedIn。 但是,我无法让它们在同一版本环境中工作:
Facebook可以正常使用以下版本的风格:
<org.springframework.social-version>1.0.3.RELEASE</org.springframework.social-version>
<org.springframework.social.facebook-version>1.0.3.RELEASE</org.springframework.social.facebook-version>
在链接的站点连接页面中,我设法正确链接并且不返回显示“未发生错误”的唯一方法是:
<org.springframework.social-version>1.1.0.BUILD-SNAPSHOT</org.springframework.social-version>
<org.springframework.social.linkedin-version>1.0.0.BUILD-SNAPSHOT</org.springframework.social.linkedin-version>
你们中的任何一个人都知道春季社交版本可以与两者合作吗? 提前谢谢,
答案 0 :(得分:1)
在我的应用程序中,我使用了facebook和twitter结合版本1.1.0-BUILD-SNAPSHOT
<org.springframework.social-version>1.1.0.BUILD-SNAPSHOT</org.springframework.social-version>
<org.springframework.social.facebook-version>1.1.0.BUILD-SNAPSHOT</org.springframework.social.facebook-version>
<org.springframework.social.twitter-version>1.1.0.BUILD-SNAPSHOT</org.springframework.social.twitter-version>
我不确定它是否也适用于linkedin。尝试它可能会有效。