mirror of
https://github.com/ysoftdevs/oauth-playground-client.git
synced 2026-01-11 22:41:29 +01:00
Update README.md
This commit is contained in:
22
README.md
22
README.md
@@ -1,2 +1,20 @@
|
||||
# oauth-playground-client
|
||||
OAuth playground web client
|
||||
# ysoftdevs/oauth-playground-client
|
||||
|
||||
[](https://github.com/ysoftdevs/oauth-playground-client/actions/workflows/deploy.yml)
|
||||
|
||||
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](https://github.com/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](https://www.sso.oauth-playground.online/) make sure that client is running on port `5555` otherwise your requests will be rejected based on `redirect_uri` mismatch.
|
||||
|
||||
Reference in New Issue
Block a user