Update OAuth2.md

This commit is contained in:
Ste Vaidis 2024-12-15 10:25:41 +02:00
parent 01f7335a94
commit c99202f6c6

View File

@ -1,12 +1,12 @@
OAuth2 Flow:
1. User clicks "Login with Google" on your platform (xorismesiti.gr).
2. Authorization Request: Redirect to Google's authorization endpoint, requesting the user's profile and email.
3. User Login and Consent: User logs in to Google and grants permissions.
4. Authorization Code Response: Google redirects back to your platform with an authorization code.
5. Access Token Request: Exchange the authorization code for an access token.
6. Access Protected Resources: Use the access token to fetch the user's Google profile and email.
7. Token Refresh (Optional): If the token expires, use the refresh token to get a new access token.
1. **User clicks** "Login with Google" on your platform (xorismesiti.gr).
2. **Authorization Request**: Redirect to Google's authorization endpoint, requesting the user's profile and email.
3. **User Login and Consent**: User logs in to Google and grants permissions.
4. **Authorization Code Response**: Google redirects back to your platform with an authorization code.
5. **Access Token Request**: Exchange the authorization code for an access token.
6. **Access Protected Resources**: Use the access token to fetch the user's Google profile and email.
7. **Token Refresh** (Optional): If the token expires, use the refresh token to get a new access token.
# 1. Authorization Request (User Initiates Login)