| 123456789101112131415161718192021222324252627282930313233343536373839 | = OAuth 2.0 Authorization Server SampleThis sample demonstrates an Authorization Server that supports a simple, static JWK Set.It's useful for working with the other samples in the library that want to point to an Authorization Server.== 1. Running the serverTo run the server, do:```bash./gradlew bootRun```Or import the project into your IDE and run `OAuth2AuthorizationServerApplication` from there.Once it is up, this request asks for a token with the "message:read" scope:```bashcurl reader:secret@localhost:8081/oauth/token -d grant_type=password -d username=subject -d password=password```Which will respond with something like:```json{    "access_token":"eyJhbGciOiJSUzI1NiIsI...Fhq4RIVyA4ZAkC7T1aZbKAQ",    "token_type":"bearer",    "expires_in":599999999,    "scope":"message:read",    "jti":"8a425df7-f4c9-4ca4-be12-0136c3015da0"}```You can also do the same with the `writer` client:```bashcurl writer:secret@localhost:8081/oauth/token -d grant_type=password -d username=subject -d password=password```
 |