2023-09-26 15:04:04 +02:00
2023-09-18 14:17:47 +02:00
2023-09-26 15:04:04 +02:00
2023-09-26 14:48:07 +02:00

ysoftdevs/oauth-playground-client

OAuth playground client deploy

Welcome to OAuth Playground Client source repo. This playground serves as an interactive platform designed to familiarize developers and students with the intricacies of OAuth authentication processes. Beyond just theoretical knowledge, this playground provides practical insights into the OAuth token exchange, callback handling, and potential pitfalls or challenges one might face during real-world integrations. The ultimate aim is to bolster understanding and confidence in implementing OAuth, ensuring secure and efficient user authentication and authorization in modern web applications.

You can find the server implemenetation on ysoftdevs/oauth-playground-server

How to run

  • Client needs to be running on web server (e.g. Apache, Nginx, etc.) to properly handle OAuth callbacks.
  • To properly handle navigation on the site, you need to have following location config
location / {
    try_files $uri $uri/ $uri.html =404;
}
  • If you will be running against our sso.oauth-playground.online make sure that client is running on port 5555 otherwise your requests will be rejected based on redirect_uri mismatch.
Description
No description provided
Readme 150 KiB
Languages
HTML 97.1%
CSS 2.4%
JavaScript 0.5%