使用Spring实现OAuth2服务器

时间:2018-05-21 12:01:29

标签: java spring oauth-2.0 spring-security-oauth2

我需要使用Spring实现一个Authorization服务器。

我正在使用本教程:http://websystique.com/spring-security/secure-spring-rest-api-using-oauth2/

但作者将所需资源和服务器放在同一个应用程序中。

我需要的是一个Auth服务器来保存用户,autenticate和令牌,资源必须在其他一些应用程序中,这样用户就可以获得一个令牌并在我的所有应用程序中使用它。

如何更改上面的代码才能实现此目的?

1 个答案:

答案 0 :(得分:0)

在本教程中,您使用Web服务来测试身份验证,而不是使用“localhost”尝试从另一台连接到网络计算机的服务器的IP。 而不是GET http://localhost:8080/SpringSecurityOAuth2Example/user/ 使用http:// Server_IP :8080 / SpringSecurityOAuth2Example / user /