Update OAuth2.md

This commit is contained in:
Ste Vaidis 2024-12-15 10:03:37 +02:00
parent abfba4077f
commit abae1ff9f7

View File

@ -1,9 +1,8 @@
# 1. Authorization Request (User Initiates Login)
A user clicks on the **Login with Google** button on the the app `xorismesiti.gr`.
The app request permission to access certain Google APIs (like the user's email, profile, etc.).
1. A user clicks on the **Login with Google** button on the the app `xorismesiti.gr`.
2. The app request permission to access certain Google APIs (like the user's email, profile, etc.).
```sh
GET https://accounts.google.com/o/oauth2/v2/auth?
@ -22,11 +21,9 @@ GET https://accounts.google.com/o/oauth2/v2/auth?
# 2. User Login and Consent
- The user is redirected to Google's login page.
- If they're not already logged in, they will be prompted to enter their Google credentials.
- After successful login, the user will be shown a consent screen where they can grant or deny permission for your app to access their Google account (e.g., email and profile information).
1. The user is redirected to Google's login page.
2. If they're not already logged in, they will be prompted to enter their Google credentials.
3. After successful login, the user will be shown a consent screen where they can grant or deny permission for your app to access their Google account (e.g., email and profile information).
**User Action**: The user clicks "Allow" to grant access.