1

这是一个 Spring Boot 项目,使用 Spring Social 依赖项来配置 Google sso。当使用 spring-social-google 的一个版本时,它可以完美运行,更新版本后它会停止工作。

我使用 Spring Social Google 版本 1.0.0 RC1 无需启用 Google+ API 即可使 sso 工作。切换到版本 1.0.0 RELEASE 后,sso 停止工作。我遇到的唯一解决方案是在 Google 控制台中启用 Google+ API。

    <groupId>org.springframework.social</groupId>
    <artifactId>spring-social-google</artifactId>
    <version>1.0.0.RC1</version>
</dependency>
    <groupId>org.springframework.social</groupId>
    <artifactId>spring-social-google</artifactId>
    <version>1.0.0.RELEASE</version>
</dependency>

为什么需要 Google+ 才能让简单的 google 登录与 spring-social 和 spring-social-google 一起使用?谢谢

4

0 回答 0