OAuth2 dummy server

A dummy OAuth2 authorization server that accepts any credentials and always approves authorization requests. Useful for quickly testing some OAuth client flows.

See also the Android demo app that uses this server (based on the AppAuth-Android demo app).

Endpoints

Endpoint Description
/oauth/auth Authorisation endpoint.
/oauth/auth-gesture Authorisation endpoint that requires the user to press an "Approve" button.
/oauth/token Token endpoint. Accepts POST requests with form data and returns an access token.
/oauth/callback Callback page that can be used for the post-auth redirect URI. Displays the received code and state.

Test Authorisation

Test Authorisation Test Authorisation (User gesture required)