Friendly OAuth2 Server
Sign Up Sign In
Index Documentation Download Check license
Friendly oAuth2 server documentation
Friendly oAuth2 server documentation
Setup and running
Setup and running test version
Setup and running production version
Setup https protocol
Setup other database
Working with OAuth2 and OpenId Methods
OAuth2
OAuth2 code flow
OAuth2 implicit flow
OAuth2 user password flow
OAuth2 client credential flow
OAuth2 refresh token flow
OpenId
OpenId code flow
OpenId implicit flow
Client secret authentication
Client secret basic
Client secret post
Client secret jwt
Client key jwt
None
Extra
OAuth2 dynamic registration
OAuth2 revoke
OAuth2 introspect
OAuth2 jwks.json
OAuth2 .well-known
OAuth2 backchannel_logout
OAuth2 userinfo
Extra settings
Control panel
User section
User sessions 1
User sessions 2
User info
Change password
Delete account
Client section
List of registered clients
Number of authorizations per day
New client registration
Admin section
Client authorizations
Auth settings
Users
Clients
Administrators
Roles
Limits
Create user
OAuth2 .well-known — endpoint information
To get brief information about the authorization server operating according to the OAuth2 standard, you can submit a GET request to address http://localhost:9000/oauth2/.well-known/oauth-authorization-server Open this link in your browser and the server will respond in JSON format with the following parameters: issuer — authorization server address authorization_endpoint — authorization address token_endpoint — token receiving address end_session_endpoint — token revocation address introspect_endpoint — token verification address userinfo_endpoint — address for receiving information about the user jwks_uri — public key information address backchannel_logout_uri — token revocation address using backchannel_logout method token_endpoint_auth_methods_supported — list of client application authorization methods token_endpoint_auth_signing_alg_values_supported — supported encryption algorithms scopes_supported — list of roles response_types_supported — list of supported responses during authorization Sample: { "issuer": "http://localhost:9000", "authorization_endpoint": "http://localhost:9000/oauth2/authorize", "token_endpoint": "http://localhost:9000/oauth2/token", "end_session_endpoint": "http://localhost:9000/oauth2/revoke", "introspect_endpoint": "http://localhost:9000/oauth2/introspect", "userinfo_endpoint": "http://localhost:9000/oauth2/userinfo", "jwks_uri": "http://localhost:9000/oauth2/jwks.json", "backchannel_logout_uri": "http://localhost:9000/oauth2/backchannel_logout", "token_endpoint_auth_methods_supported": [ "client_secret_post", "private_key_jwt", "client_secret_jwt", "none", "client_secret_basic" ], "token_endpoint_auth_signing_alg_values_supported": [ "RSA" ], "scopes_supported": ["admin", "clientuser","user"], "response_types_supported": [ "code", "token" ] }
Friendly OAuth2 Server
prodmicroservice.com
2024