OAuth.io Server API

Number of APIs: 7

Become an OAuth2 provider

Contact Support: Name: No Contact Email: email@example.com

  1. oauth2-clients - Create a client POST {{baseUrl}}/oauth2/clients

  2. oauth2-clients - Retrieves a client by its client_id GET {{baseUrl}}/oauth2/clients/:client_id

  3. oauth2-clients - Regenerate the API key's client GET {{baseUrl}}/oauth2/clients/keygen/:client_id

  4. oauth2-clients - Retrieves all clients, and filters by user_id if given GET {{baseUrl}}/oauth2/clients/all/:user_id

  5. oauth2 - Authorize a user POST {{baseUrl}}/oauth2/authorize?client_id=<string>&decision=<>&user_id=<string>&scope=<>&redirect_uri=<string>&response_type=<>

  6. oauth2 - Access token retrieval (with code) or refresh (with refresh token) POST {{baseUrl}}/oauth2/token

  7. oauth2 - Check the validity of an access token and give back his permission, client_id and user_id GET {{baseUrl}}/oauth2/check?access_token=<string>