Running oauth2 provider server implemented in java

I am looking for a working oauth2 provider server implemented in java, leeloo and spring are some that I found but no working example.

https://github.com/SpringSource/spring-security-oauth/wiki/tutorial https://bitbucket.org/smartproject/oauth-2.0/wiki/Home 
+6
source share
3 answers

There is an implementation of Apache Oltu (formerly Apache Amber) that supports the creation of authorization servers and OAuth 2.0 resources: https://cwiki.apache.org/confluence/display/OLTU/OAuth+2.0+Authorization+Server and is not dependent on any structure.

You have AS examples (Auth and Token endpoints) and an 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

+8
source

ınside spring security package there are 2 examples of one ton another sparklr implemented with oauth2

+3
source

The bit is late, but you can - for future links - see https://github.com/OpenConextApps/apis .

+1
source

Source: https://habr.com/ru/post/899056/


All Articles