在 java 上实现的工作 oauth2 提供者服务器
我正在搜索一个在 java 上实现的工作 oauth2 提供程序服务器, leeloo 和 spring security 是我发现的一些, 但没有可行的例子。
https://github.com/SpringSource/spring-security-oauth/wiki/tutorial
https://bitbucket.org/smartproject/oauth-2.0/wiki/Home
I am searching a working oauth2 provider server implemented on java,
leeloo and spring security are some that I have found,
but there is no working example.
https://github.com/SpringSource/spring-security-oauth/wiki/tutorial
https://bitbucket.org/smartproject/oauth-2.0/wiki/Home
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Apache Oltu(以前称为 Apache Amber)实现支持构建 OAuth 2.0 授权和资源服务器:https://cwiki.apache.org/confluence/display/OLTU/OAuth+2.0+Authorization+Server 并且是不依赖于任何 框架。
您有集成测试中 AS(Auth 和 Token 端点)和 RS 测试实现的示例:
<一href="https://github.com/apache/oltu/tree/trunk/oauth-2.0/integration-tests/src/test/java/org/apache/oltu/oauth2/integration/endpoints">https:// github.com/apache/oltu/tree/trunk/oauth-2.0/integration-tests/src/test/java/org/apache/oltu/oauth2/integration/endpoints
There is the Apache Oltu (formerly Apache Amber) implementation that supports building OAuth 2.0 Authorization and Resource Servers: https://cwiki.apache.org/confluence/display/OLTU/OAuth+2.0+Authorization+Server and is not dependent on any framework.
You have examples of AS (Auth and Token endpoints) and RS test implementation in integration tests:
https://github.com/apache/oltu/tree/trunk/oauth-2.0/integration-tests/src/test/java/org/apache/oltu/oauth2/integration/endpoints
在 spring security 包中有 2 个示例,其中一个是使用 oauth2 实现的其他 Sparklr
ınside spring security package there has 2 example one tonr other sparklr implemented with oauth2
有点晚了,但您可以 - 为了将来的参考 - 看看 https://github.com/OpenConextApps/apis< /a>.
Bit late, but you could - for future references - have a look at https://github.com/OpenConextApps/apis.