Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manekinekko/autorization-server
https://github.com/manekinekko/autorization-server
authorization oauth2
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/manekinekko/autorization-server
- Owner: manekinekko
- Created: 2017-02-13T17:59:48.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-11T08:35:29.000Z (over 7 years ago)
- Last Synced: 2024-12-31T23:21:39.992Z (about 1 month ago)
- Topics: authorization, oauth2
- Language: Java
- Size: 76.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This project is a simple, minimal implementation of an OAuth2 Authorization Server.
It has a context root of `/`.OAuth2 endpoints are:
* `/oauth/token` the Token endpoint, for clients to acquire access
tokens. There is one client: `demo-client-123xyz` with secret `demo-client-123xyz`.* `/oauth/authorize` the Authorization endpoint to obtain user
approval for a token grant.* `/oauth/check_token` the Check Token endpoint (not part of the
OAuth2 spec). Can be used to decode a token remotely.* User login and password are: `user:password`
More information about Spring Security OAuth2 [here](https://github.com/spring-projects/spring-security-oauth/blob/master/docs/oauth2.md)